TechDraw Hatch/ro: Difference between revisions

From FreeCAD Documentation
(Created page with "==Descriere== Instrumentul de hașurarea/Hatch umple o regiune închisă în View cu un model de hașură/Hatch pattern. Modelele sunt creat ca fișiere SVG ori bitmap . Eș...")
(Created page with "==Cum se folosește== # Select an closed region in a View. The region will turn green. # Press the 16px {{KEY|Hatch}} button # You may need to pr...")
Line 5: Line 5:
Instrumentul de hașurarea/Hatch umple o regiune închisă în View cu un model de hașură/Hatch pattern. Modelele sunt creat ca fișiere SVG ori bitmap . Eșantion de modele SVG sunt disponibile la ".../Mod/Draft/Resources/patterns".
Instrumentul de hașurarea/Hatch umple o regiune închisă în View cu un model de hașură/Hatch pattern. Modelele sunt creat ca fișiere SVG ori bitmap . Eșantion de modele SVG sunt disponibile la ".../Mod/Draft/Resources/patterns".


==How to use==
==Cum se folosește==
# Select an closed region in a View. The region will turn green.
# Select an closed region in a View. The region will turn green.
# Press the [[Image:TechDraw_Hatch.png|16px]] {{KEY|Hatch}} button
# Press the [[Image:TechDraw_Hatch.png|16px]] {{KEY|Hatch}} button

Revision as of 16:02, 21 September 2018

TechDraw Hatch

Menu location
TechDraw → Hatch
Workbenches
TechDraw
Default shortcut
None
Introduced in version
-
See also
TechDraw Hatching

Descriere

Instrumentul de hașurarea/Hatch umple o regiune închisă în View cu un model de hașură/Hatch pattern. Modelele sunt creat ca fișiere SVG ori bitmap . Eșantion de modele SVG sunt disponibile la ".../Mod/Draft/Resources/patterns".

Cum se folosește

  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

  • DateSource: The View and Face to receive the hatch pattern.
  • DateHatch Pattern: Full path and filename to an SVG pattern file.
  • VizualizareHatch Color: Hatch pattern will be displayed in this color.
  • VizualizareHatch Scale: Hatch pattern size modifier.

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

  • Hatching is vulnerable to the infamous "topological naming problem". Best Practice is to defer Hatching until the design is stable.
  • Note that Svg hatch patterns are not included when a drawing page is saved as an Svg file.