TechDraw VerticalDimension: Difference between revisions

From FreeCAD Documentation
(Reduced the page by linking to TechDraw_LengthDimension.)
(Marked this version for translation)
 
(3 intermediate revisions by the same user not shown)
Line 24: Line 24:


<!--T:8-->
<!--T:8-->
The '''TechDraw VerticalDimension''' tool adds a vertical dimension to a View. The dimension may be the vertical distance between two vertices or the vertical length of a straight edge. As with the [[TechDraw_LengthDimension|TechDraw LengthDimension]] tool it is also possible to select two edges or a vertex and an edge, but these options make less sense for this tool.
The '''TechDraw VerticalDimension''' tool adds a vertical dimension to a View. The dimension may be the vertical distance between two points or the vertical length of a straight edge. As with the [[TechDraw_LengthDimension|TechDraw LengthDimension]] tool it is also possible to select two edges or a point and an edge, but these options make less sense for this tool.


<!--T:21-->
For more information see [[TechDraw_LengthDimension#Description|TechDraw LengthDimension]].
For more information see [[TechDraw_LengthDimension|TechDraw LengthDimension]].


</translate>
</translate>
Line 32: Line 33:
<translate>
<translate>
<!--T:9-->
<!--T:9-->
{{Caption|Length dimension taken from two arbitrary nodes of the view; the distance is measured vertically}}
{{Caption|Vertical dimension taken from two points}}

==Usage== <!--T:3-->

See [[TechDraw_LengthDimension#Usage|TechDraw LengthDimension]].

==Dimension dialog==

See [[TechDraw_LengthDimension#Dimension_dialog|TechDraw LengthDimension]].

==Limitations==

<!--T:12-->
Dimension objects are vulnerable to the "[[Topological_naming_problem|topological naming problem]]". See [[TechDraw_LengthDimension#Limitations|TechDraw LengthDimension]].

==Notes==

See [[TechDraw_LengthDimension#Notes|TechDraw LengthDimension]].

==Properties== <!--T:5-->

<!--T:13-->
See [[TechDraw_LengthDimension#Properties|TechDraw LengthDimension]].

==Scripting== <!--T:6-->

<!--T:14-->
See also: [https://freecad.github.io/SourceDoc/ Autogenerated API documentation] and [[FreeCAD_Scripting_Basics|FreeCAD Scripting Basics]].

<!--T:15-->
The Vertical Dimension tool can be used in [[Macros|macros]] and from the [[Python|Python]] console by using the following functions:

</translate>
{{Code|code=
dim1 = FreeCAD.ActiveDocument.addObject('TechDraw::DrawViewDimension','Dimension')
dim1.Type = "DistanceX"
dim1.References2D=[(view1, 'Edge1')]
rc = page.addView(dim1)
}}
<translate>





Latest revision as of 06:47, 26 July 2023

TechDraw VerticalDimension

Menu location
TechDraw → Dimensions → Insert Vertical Dimension
Workbenches
TechDraw
Default shortcut
Shift + V
Introduced in version
-
See also
TechDraw LengthDimension, TechDraw HorizontalDimension

Description

The TechDraw VerticalDimension tool adds a vertical dimension to a View. The dimension may be the vertical distance between two points or the vertical length of a straight edge. As with the TechDraw LengthDimension tool it is also possible to select two edges or a point and an edge, but these options make less sense for this tool.

For more information see TechDraw LengthDimension.

Vertical dimension taken from two points