TechDraw Hatch/it: Difference between revisions

From FreeCAD Documentation
(Created page with "{{GuiCommand/it|Name=TechDraw Hatch|Name/it=TechDraw Hatch|Workbenches=TechDraw|MenuLocation=TechDraw → Tratteggio|Shortcut=|SeeAlso=}}")
No edit summary
Line 1: Line 1:
{{GuiCommand/it|Name=TechDraw Hatch|Name/it=TechDraw Hatch|Workbenches=[[TechDraw Module/it|TechDraw]]|MenuLocation=TechDraw → Tratteggio|Shortcut=|SeeAlso=}}
{{GuiCommand/it|Name=TechDraw Hatch|Name/it=Tratteggio|Workbenches=[[TechDraw Module/it|TechDraw]]|MenuLocation=TechDraw → Tratteggio|Shortcut=|SeeAlso=}}


==Description==
==Description==

Revision as of 20:09, 25 August 2016

Tratteggio

Posizione nel menu
TechDraw → Tratteggio
Ambiente
TechDraw
Avvio veloce
Nessuno
Introdotto nella versione
-
Vedere anche
Nessuno

Description

The Hatch tool fills a closed region in a View with a Hatch pattern. Patterns are created as SVG files. Sample patterns are available in ".../Mod/Draft/Resources/patterns".

How to use

  1. Select an closed region in a View. The region will turn green.
  2. Press the Hatch button
  3. You may need to press recompute .

Options

None.

Properties

  • DatiSource: The View and Face to receive the hatch pattern.
  • DatiHatch Pattern: Full path and filename to an SVG pattern file.
  • DatiHatch Color: Hatch pattern will be displayed in this color.

Scripting

Hatch can be added to areas in Views using Python.

hatch = FreeCAD.ActiveDocument.addObject('TechDraw::DrawHatch','Hatch')
hatch.Source = (view1,["Face0"])
hatch.HatchPattern = hatchFileSpec
rc = page.addView(hatch)

Notes

  • Note that hatch patterns are not included when a drawing page is saved as an Svg file.