TechDraw Hatch/es: Difference between revisions

From FreeCAD Documentation
(Updating to match new version of source page)
(Updating to match new version of source page)
Line 41: Line 41:


* Hatching objects are vulnerable to the "[[Topological_naming_problem|topological naming problem]]". See [[TechDraw_LengthDimension|TechDraw LengthDimension]] for more information. It is recommended that hatching be one of the last steps in your drawing process.
* Hatching objects are vulnerable to the "[[Topological_naming_problem|topological naming problem]]". See [[TechDraw_LengthDimension|TechDraw LengthDimension]] for more information. It is recommended that hatching be one of the last steps in your drawing process.
* Sample [[SVG|SVG]] patterns are available locally in
* Sample [[SVG|SVG]] patterns are available locally in:
{{Code|code=
: {{Code|code=
$INSTALL_DIR/data/Mod/TechDraw/Patterns
$INSTALL_DIR/data/Mod/TechDraw/Patterns
}}
}}
where {{incode|$INSTALL_DIR}} is the directory where FreeCAD was installed, for example
: Where {{incode|$INSTALL_DIR}} is the directory where FreeCAD was installed, for example:
{{Code|code=
: {{Code|code=
/usr/share/freecad/data/Mod/TechDraw/Patterns
/usr/share/freecad/data/Mod/TechDraw/Patterns
}}
}}
<div class="mw-translate-fuzzy">
y también en [https://github.com/FreeCAD/FreeCAD/tree/master/src/Mod/TechDraw/Patterns GitHub].
y también en [https://github.com/FreeCAD/FreeCAD/tree/master/src/Mod/TechDraw/Patterns GitHub].
</div>


==Propiedades==
==Propiedades==

Revision as of 17:22, 31 October 2022

DibujoTécnico Achurado

Ubicación en el Menú
DibujoTécnico → Achurar un plano usando un archivo de imagen
Entornos de trabajo
DibujoTécnico
Atajo de teclado por defecto
Ninguno
Introducido en versión
-
Ver también
DibujoTécnico Aplicar la achurado geométrica a la plano, DibujoTécnico Achurado

Descripción

La herramienta Achurado rellena una región cerrada en una Vista con un patrón de achurado, que pueden ser archivos SVG o bitmap. Por el contrario el Achurado geométrico utiliza un archivo de patrones PAT específico, vea Achurado para más detalles.

SVG achurado patrón en una cara

Utilización

  1. Seleccione una región cerrada en una Vista.
  2. Pulse el Achurar un plano usando un archivo de imagen
  3. Se abrirá un diálogo en el que podrá seleccionar el archivo de patrón, la escala y el color.

Notas

$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

y también en GitHub.

Propiedades

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

Guión

Ver también: DibujoTécnico API y FreeCAD Fundamentos de Guión.

La herramienta Achurado se puede utilizar en macros y desde la consola de Python utilizando las siguientes funciones:

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