TechDraw Hatch/it: Difference between revisions

From FreeCAD Documentation
(Created page with "==Uso== # Selezionare una regione chiusa in una vista. La regione diventerà verde. # Premere il pulsante 16px {{KEY|Tratteggio}} # Potrebbe esse...")
(Created page with "==Opzioni== Nessuna.")
Line 9: Line 9:
# Potrebbe essere necessario dover premere Ricalcola [[Image:View-rotate-right.png|16px]].
# Potrebbe essere necessario dover premere Ricalcola [[Image:View-rotate-right.png|16px]].


==Options==
==Opzioni==
Nessuna.
None.


==Properties==
==Properties==

Revision as of 20:58, 28 October 2016

Tratteggio

Posizione nel menu
TechDraw → Tratteggio
Ambiente
TechDraw
Avvio veloce
Nessuno
Introdotto nella versione
-
Vedere anche
Nessuno

Descrizione

Lo strumento Tratteggio riempie una regione chiusa di una vista con un modello di tratteggio. I modelli sono creati in formato SVG. I modelli di tratteggio sono disponibili in ".../Mod/Draft/Resources/patterns".

Uso

  1. Selezionare una regione chiusa in una vista. La regione diventerà verde.
  2. Premere il pulsante Tratteggio
  3. Potrebbe essere necessario dover premere Ricalcola .

Opzioni

Nessuna.

Properties

  • DatiSource: The View and Face to receive the hatch pattern.
  • DatiHatch Pattern: Full path and filename to an SVG pattern file.
  • DatiHatch Color: Hatch pattern will be displayed in this color.

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

  • Note that hatch patterns are not included when a drawing page is saved as an Svg file.