TechDraw VerticalDimension/it: Difference between revisions

From FreeCAD Documentation
No edit summary
(Updating to match new version of source page)
(75 intermediate revisions by 4 users not shown)
Line 1: Line 1:
<languages/>
{{GuiCommand/it|Name=TechDraw Dimension Vertical|Name/it=Verticale|Workbenches=[[TechDraw Module/it|TechDraw]]|MenuLocation=TechDraw → Verticale|Shortcut=|SeeAlso=}}


<div class="mw-translate-fuzzy">
==Description==
{{Docnav/it
The Dimension Vertical tool adds a vertical dimension to a View. The dimension may be between two vertices, the length of one edge or the vertical distance between 2 edges. The distance will initially be the projected distance (ie as shown on the drawing), but this may be changed to the actual 3D distance using the Link Dimension [[Image:LinkDimension.png|24px]] tool.
|[[TechDraw_HorizontalDimension/it|Dimensione orizzontale]]
[[File:VerticalSample.png|200px|center]]
|[[TechDraw_RadiusDimension/it|Raggio]]
|[[TechDraw_Workbench/it|TechDraw]]
|IconL=TechDraw_HorizontalDimension.svg
|IconR=TechDraw_RadiusDimension.svg
|IconC=Workbench_TechDraw.svg
}}
</div>


<div class="mw-translate-fuzzy">
==How to use==
{{GuiCommand/it
# Select the points or edge which define your measurement.
# Press the {{KEY|[[Image:Dimension_Vertical.png|24px]] [[TechDraw Dimension Vertical|Dimension Vertical]]}} button
|Name=TechDraw Dimension Vertical
|Name/it=Dimensione verticale
# A dimension will be added to the View. The dimension may be dragged to the desired position.
|Workbenches=[[TechDraw_Workbench/it|TechDraw]]
|MenuLocation=TechDraw → Dimensione verticale
|Shortcut=
|SeeAlso=[[TechDraw_LengthDimension/it|Lunghezza]], [[TechDraw_HorizontalDimension/it|Orizzontale]]
}}
</div>


<span id="Description"></span>
==Options==
==Descrizione==
None.


<div class="mw-translate-fuzzy">
==Properties==
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 {{Button|[[Image:TechDraw_LinkDimension.svg|16px]] [[TechDraw_LinkDimension/it|Link alla dimensione]]}} essa può essere modificata con la distanza 3D effettiva.
* {{PropertyData|X}}: Vertical position of the dimension text relative to the View.
</div>
* {{PropertyData|Y}}: Vertical position of the dimension text relative to the View.
* {{PropertyData|Font}}: The name of the font to use for the dimension text.
* {{PropertyData|Fontsize}}: Dimension text size in mm.
* {{PropertyData|FormatSpec}}: Allows additional text to be added to the dimension text. Dimension value will replace %value%.
* {{PropertyData|LineWidth}}: Dimension line weight.
* {{PropertyData|Type}}: Length,radius,diameter, etc. Not normally manipulated by the end user.
* {{PropertyData|MeasureType}}: "True" - based on 3D geometry or "Projected" - based on the drawing. Not normally manipulated directly by the end user.


For more information see [[TechDraw_LengthDimension|TechDraw LengthDimension]].
==Scripting==

Vertical dimensions can be added to Pages using Python.
[[Image:TechDraw_Dimension_Vertical_example.png|220px]]
{{Code|code=
<div class="mw-translate-fuzzy">
dim1 = FreeCAD.ActiveDocument.addObject('TechDraw::DrawViewDimension','Dimension')
{{Caption|Dimensione della lunghezza presa da due nodi arbitrari della vista; la distanza è misurata verticalmente}}
dim1.Type = "DistanceX"
</div>
dim1.References2D=[(view1, 'Edge1')]

rc = page.addView(dim1)

<div class="mw-translate-fuzzy">
{{Docnav/it
|[[TechDraw_HorizontalDimension/it|Dimensione orizzontale]]
|[[TechDraw_RadiusDimension/it|Raggio]]
|[[TechDraw_Workbench/it|TechDraw]]
|IconL=TechDraw_HorizontalDimension.svg
|IconR=TechDraw_RadiusDimension.svg
|IconC=Workbench_TechDraw.svg
}}
}}
</div>
==Notes==

* None at this time
{{TechDraw Tools navi{{#translation:}}}}
{{clear}}
{{Userdocnavi{{#translation:}}}}
<languages/>

Revision as of 06:47, 26 July 2023

Dimensione verticale

Posizione nel menu
TechDraw → Dimensione 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.

For more information see TechDraw LengthDimension.

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