TechDraw VerticalExtentDimension/it: Difference between revisions

From FreeCAD Documentation
(Created page with "== Utilizzo ==")
(Created page with "# Selezionare una vista o una serie di bordi in una vista. # Premere il pulsante {{Button|16px TechDraw Dimension Vertical Extent/i...")
Line 20: Line 20:
== Utilizzo ==
== Utilizzo ==


# Select a View or a collection of Edges in a View.
# Selezionare una vista o una serie di bordi in una vista.
# Press the {{Button|[[Image:TechDraw_Dimension_VExtent.svg|16px]] [[TechDraw Dimension Vertical Extent|Dimension Vertical Extent]]}} button
# Premere il pulsante {{Button|[[Image:TechDraw_Dimension_VExtent.svg|16px]] [[TechDraw Dimension Vertical Extent/it|Estensione verticale]]}}.
# Viene aggiunta dimensione alla vista. La dimensione può essere trascinata nella posizione desiderata.
# A dimension will be added to the View. The dimension may be dragged to the desired position.


== Limitations ==
== Limitations ==

Revision as of 07:43, 13 October 2019

Other languages:

Estensione verticale

Posizione nel menu
TechDraw → Estensione verticale
Ambiente
TechDraw
Avvio veloce
Nessuno
Introdotto nella versione
-
Vedere anche
Lunghezza, Estensione orizzontale

Descrizione

Lo strumento Estensione verticale aggiunge una quota lineare a una vista. La dimensione si estende dal punto più in basso degli oggetti selezionati al punto più in alto. Viene posizionato un vertice cosmetico nei punti estremi.


Estensione verticale della faccia BSpline

Utilizzo

  1. Selezionare una vista o una serie di bordi in una vista.
  2. Premere il pulsante File:TechDraw Dimension VExtent.svg Estensione verticale.
  3. Viene aggiunta dimensione alla vista. La dimensione può essere trascinata nella posizione desiderata.

Limitations

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

Properties

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

Data

  • DatiMeasureType: true - based on 3D geometry or "Projected" - based on the drawing. Not normally manipulated directly by the end user. Not yet implemented for Dimension Vertical Extent.

Scripting

See also: TechDraw API and FreeCAD Scripting Basics.

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

selection = [(view1, 'Edge1'), (view1, 'Edge2')]  #or [] for all
hExtentDim = TechDraw.Dimension.makeExtentDim(selection, VERTICAL)
rc = page.addView(hExtentDim)