TechDraw Hatch/ro: Difference between revisions

From FreeCAD Documentation
(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...")
(Created page with "==Opțiuni== Niciuna.")
Line 10: Line 10:
# You may need to press recompute [[Image:View-rotate-right.png|16px]].
# You may need to press recompute [[Image:View-rotate-right.png|16px]].


==Options==
==Opțiuni==
Niciuna.
None.


==Properties==
==Properties==

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 .

Opțiuni

Niciuna.

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.