TechDraw: Quota verticale

From FreeCAD Documentation
Revision as of 21:24, 4 January 2019 by Renatorivo (talk | contribs) (Replaced content with "==Uso==")

Verticale

Posizione nel menu
TechDraw → Verticale
Ambiente
TechDraw
Avvio veloce
Nessuno
Introdotto nella versione
-
Vedere anche
Lunghezza, Orizzontale

Descrizione

Lo strumento dimensione Verticale aggiunge una dimensione verticale ad una Vista. La dimensione può essere la distanza tra due vertici, la lunghezza di uno spigolo o la distanza verticale tra 2 spigoli. La distanza indicata all'inizio è la distanza proiettata (vale a dire, come mostrata nel disegno), ma utilizzando lo strumento Link alla dimensione essa può essere modificata con la distanza 3D effettiva.

Dimensione della lunghezza presa da due nodi arbitrari della vista; la distanza è misurata verticalmente

Uso

  1. Select the points or edge which define your measurement.
  2. Press the File:Dimension Vertical.png Dimension Vertical button
  3. A dimension will be added to the View. The dimension may be dragged to the desired position.

Limitations

Dimension objects are vulnerable to "topological naming" issues. See the information in the TechDraw Dimension Length tool for more information.

Proprietà

This object has the same properties as the TechDraw Dimensione Lunghezza tool. See that tool for details.

This object has the same properties as the TechDraw Dimension Length tool. See that tool for details.

Script

Le dimensioni Verticale possono essere aggiunte alle pagine utilizzando Python.

See also: TechDraw API and FreeCAD Scripting Basics.

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

dim1 = FreeCAD.ActiveDocument.addObject('TechDraw::DrawViewDimension','Dimension')
dim1.Type = "DistanceX"
dim1.References2D=[(view1, 'Edge1')]
rc = page.addView(dim1)