TechDraw Hatch/ru: Difference between revisions

From FreeCAD Documentation
(Updating to match new version of source page)
(Updating to match new version of source page)
Line 36: Line 36:
}}
}}
==Notes==
==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.
* Note that Svg hatch patterns are not included when a drawing page is saved as an Svg file.
{{clear}}
{{clear}}

Revision as of 06:17, 5 July 2018

TechDraw Hatch

Системное название
TechDraw Hatch
Расположение в меню
TechDraw → Hatch
Верстаки
TechDraw
Быстрые клавиши
Нет
Представлено в версии
-
См. также
Нет

Description

The Hatch tool fills a closed region in a View with a Hatch pattern. Patterns are created as SVG or bitmap files. Sample SVG 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

  • ДанныеSource: The View and Face to receive the hatch pattern.
  • ДанныеHatch Pattern: Full path and filename to an SVG pattern file.
  • ВидHatch Color: Hatch pattern will be displayed in this color.
  • ВидHatch 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.
Other languages: