TechDraw Hatch: Difference between revisions

From FreeCAD Documentation
(Updated Docnav.)
(Updated Description and Usage. Bitmap images cannot be used.)
Line 23: Line 23:


<!--T:8-->
<!--T:8-->
The Hatch tool fills a closed region in a View with a hatch pattern, which can be [[SVG|SVG]] or [[bitmap|bitmap]] files. In contrary the [[Image:TechDraw_GeometricHatch.svg|24px]] [[TechDraw_GeometricHatch|Geometric Hatch]] tool uses a specific PAT pattern file, see [[TechDraw_Hatching|Hatching]] for details.
The Hatch tool fills a closed region in a View with an [[SVG|SVG]] based hatch pattern. Alternatively the [[Image:TechDraw_GeometricHatch.svg|16px]] [[TechDraw_GeometricHatch|Geometric Hatch]] tool uses PAT based hatch patterns. See [[TechDraw_Hatching|Hatching]] for details.


</translate>
</translate>
Line 35: Line 35:


<!--T:10-->
<!--T:10-->
# Select an closed region in a View.
# Select a closed region in a View.
# There are several ways to invoke the tool:
# Press the {{Button|[[Image:TechDraw_Hatch.svg|16px]] [[TechDraw_Hatch|Hatch a Face using Image File]]}} button
#* Press the {{Button|[[Image:TechDraw_Hatch.svg|16px]] [[TechDraw_Hatch|TechDraw Hatch]]}} button.
# A dialog will open where you can select the pattern file, the scale and color.
#* Select the {{MenuCommand|TechDraw → [[Image:TechDraw_Hatch.svg|16px]] Hatch a Face using Image File}} option from the menu.
# The {{MenuCommand|Apply Hatch to Face}} task panel opens.
# Optionally change the {{MenuCommand|Pattern File}}, the {{MenuCommand|Pattern Scale}} and the {{MenuCommand|Line Color}}.
# Press the {{Button|OK}} button.


== Notes == <!--T:7-->
== Notes == <!--T:7-->

Revision as of 09:41, 14 March 2022

TechDraw Hatch

Menu location
TechDraw → Hatch a Face using Image File
Workbenches
TechDraw
Default shortcut
None
Introduced in version
-
See also
TechDraw Geometric Hatch, TechDraw Hatching

Description

The Hatch tool fills a closed region in a View with an SVG based hatch pattern. Alternatively the Geometric Hatch tool uses PAT based hatch patterns. See Hatching for details.

SVG hatch pattern on a face

Usage

  1. Select a closed region in a View.
  2. There are several ways to invoke the tool:
    • Press the TechDraw Hatch button.
    • Select the TechDraw → Hatch a Face using Image File option from the menu.
  3. The Apply Hatch to Face task panel opens.
  4. Optionally change the Pattern File, the Pattern Scale and the Line Color.
  5. Press the OK button.

Notes

$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.

Properties

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

Scripting

See also: TechDraw API and FreeCAD Scripting Basics.

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)