TechDraw: Dettaglio

From FreeCAD Documentation
Revision as of 20:46, 7 April 2020 by Renatorivo (talk | contribs) (Created page with "{{Emphasis|Vedere anche:}} API TechDraw e Nozioni di base sugli script di FreeCAD.")
Other languages:

Dettaglio

Posizione nel menu
TechDraw → Dettaglio
Ambiente
TechDraw
Avvio veloce
Nessuno
Introdotto nella versione
-
Vedere anche
Vista, Gruppo di proiezioni

Descrizione

Lo strumento Dettaglio crea una vista che contiene l'ingrandimento di un'area di una vista esistente.

Vista di dettaglio con casella di visualizzazione circolare di una vista esistente

Utilizzo

  1. Selezionare una vista di una parte nella finestra o nella struttura 3D.
  2. Se nel documento sono presenti più pagine di disegno, è necessario selezionare anche la pagina desiderata nella struttura.
  3. Premere il pulsante Dettaglio per creare la vista del dettaglio.
  4. selezionare la vista creata nella struttura e modificarne le proprietà DatiPunto di ancoraggio, DatiRaggio o DatiScala per regolare la posizione, le dimensioni e l'ingrandimento dell'area della vista di base che dovrebbe essere visualizzata nella vista di dettaglio.

La vista Dettaglio può essere visualizzata in una casella rotonda o quadrata. Questo è controllato dalle preferenze impostate in Contorno del dettaglio.

Proprietà

Detail View

  • DatiBaseView: The view on which this Detail view is based.
  • DatiAnchor Point: The center of the Detail view within the DatiBaseView.
  • DatiRadius: The size of the area in the DatiBaseView that is displayed in the Detail view.
  • DatiScale: Magnification level.
  • DatiReference: An identifier to indicate the area of the DatiBaseView that is displayed.

Base View

A Detail view inherits all applicable properties of the view specified as DatiBaseView. In the properties of this view you can change the appearance of the detail outline:

  • VistaHighlight Line Color: Line color for the outline shape.
  • VistaHighlight Line Style: Line style for the outline shape.

The default settings for these parameters are set via the settings Detail Highlight and Detail Highlight Style in the TechDraw preferences.

Script

Vedere anche: API TechDraw e Nozioni di base sugli script di FreeCAD.

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

Detail = FreeCAD.ActiveDocument.addObject('TechDraw::DrawViewDetail','Detail')
...TBA

Tricks

  • The space around the view outline and the view object border is by default a white area. This means it covers everything behind it. Sometimes there is not enough space on the page and you can save space by reducing this unnecessary white area.
    This is done by putting the Detail view into a clip group:

File:TechDraw DetailClipped.png

Detail view in a clip group

Notes