TechDraw VerticalExtentDimension/it: Difference between revisions

From FreeCAD Documentation
(Created page with "{{Docnav/it|Estensione orizzontale|Esporta pagina in SVG|TechDraw|IconL=TechDraw_Dim...")
(Created page with "{{GuiCommand/it |Name=TechDraw Dimension Vertical Extent |Name/it=Estensione verticale |MenuLocation=TechDraw → Estensione verticale |Workbenches=TechDraw Module/it|TechDr...")
Line 2: Line 2:
{{Docnav/it|[[TechDraw_Dimension_Horizontal Extent/it|Estensione orizzontale]]|[[TechDraw_SaveSVG/it|Esporta pagina in SVG]]|[[TechDraw_Module/it|TechDraw]]|IconL=TechDraw_Dimension_HExtent.svg|IconC=Workbench_TechDraw.svg|IconR=techdraw-saveSVG.svg}}
{{Docnav/it|[[TechDraw_Dimension_Horizontal Extent/it|Estensione orizzontale]]|[[TechDraw_SaveSVG/it|Esporta pagina in SVG]]|[[TechDraw_Module/it|TechDraw]]|IconL=TechDraw_Dimension_HExtent.svg|IconC=Workbench_TechDraw.svg|IconR=techdraw-saveSVG.svg}}


{{GuiCommand
{{GuiCommand/it
|Name=TechDraw Dimension Vertical Extent
|Name=TechDraw Dimension Vertical Extent
|Name/it=Estensione verticale
|MenuLocation=TechDraw → Dimension Vertical Extent
|Workbenches=[[TechDraw Module|TechDraw]]
|MenuLocation=TechDraw → Estensione verticale
|SeeAlso=[[TechDraw Dimension Length]], [[TechDraw Dimension Horizontal Extent]]
|Workbenches=[[TechDraw Module/it|TechDraw]]
|SeeAlso=[[TechDraw Dimension Length/it|Lunghezza]], [[TechDraw Dimension Horizontal Extent/it|Estensione orizzontale]]
}}
}}



Revision as of 07:40, 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

Description

The Dimension Vertical Extent tool adds a linear dimension to a View. The dimension extends from the bottom most point on the selected objects to the top most point. A CosmeticVertex will be placed at each point.


Vertical Extent dimension of BSpline Face

How to use

  1. Select a View or a collection of Edges in a View.
  2. Press the File:TechDraw Dimension VExtent.svg Dimension Vertical Extent 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.

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)