TechDraw Hatch/ru: Difference between revisions

From FreeCAD Documentation
No edit summary
(Updating to match new version of source page)
Line 1: Line 1:
<languages/>
<languages/>


<div class="mw-translate-fuzzy">
{{Docnav/ru
{{Docnav/ru
|[[TechDraw_ExportPageDXF/ru|Экспорт листа в DXF]]
|[[TechDraw_ExportPageDXF/ru|Экспорт листа в DXF]]
Line 9: Line 10:
|IconC=Workbench_TechDraw.svg
|IconC=Workbench_TechDraw.svg
}}
}}
</div>


{{GuiCommand/ru
{{GuiCommand/ru
Line 66: Line 68:




<div class="mw-translate-fuzzy">
{{Docnav/ru
{{Docnav/ru
|[[TechDraw_ExportPageDXF/ru|Экспорт листа в DXF]]
|[[TechDraw_ExportPageDXF/ru|Экспорт листа в DXF]]
Line 74: Line 77:
|IconC=Workbench_TechDraw.svg
|IconC=Workbench_TechDraw.svg
}}
}}
</div>


{{TechDraw Tools navi{{#translation:}}}}
{{TechDraw Tools navi{{#translation:}}}}

Revision as of 17:43, 30 November 2021

Other languages:

Штриховка

Системное название
TechDraw_Hatch
Расположение в меню
TechDraw → Штриховать грань, используя файл изображения
Верстаки
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)