TechDraw "Штриховка"

From FreeCAD Documentation
Revision as of 19:28, 15 September 2021 by FuzzyBot (talk | contribs) (Updating to match new version of source page)
Other languages:

TechDraw Hatch

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

Описание

The Hatch tool fills a closed region in a View with a hatch pattern, which can be SVG or bitmap files. In contrary the Geometric Hatch tool uses a specific PAT pattern file, see Hatching for details.

SVG hatch pattern on a face

Применение

  1. Select an closed region in a View.
  2. Press the Hatch a Face using Image File button
  3. A dialog will open where you can select the pattern file, the scale and color.

Примечания

$INSTALL_DIR/data/Mod/TechDraw/Patterns

where $INSTALL_DIR is the directory where FreeCAD was installed, for example

/usr/share/freecad/data/Mod/TechDraw/Patterns

and also on GitHub.

Свойства

  • Данные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.

Программирование

См. так же: TechDraw API и Основы составления скриптов FreeCAD.

The Hatch tool can be used in macros and from the Python console by using the following functions:

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