TechDraw VerticalDimension/ro: Difference between revisions

From FreeCAD Documentation
(Created page with "Cotă Verticală TechDraw")
 
(Updating to match new version of source page)
 
(45 intermediate revisions by 6 users not shown)
Line 1: Line 1:
<languages/>
<languages/>
{{GuiCommand|Name=TechDraw Dimension Vertical|Workbenches=[[TechDraw Module|TechDraw]]|MenuLocation=TechDraw → Dimension Vertical|Shortcut=|SeeAlso=}}


<div class="mw-translate-fuzzy">
==Description==
{{Docnav/ro
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|New Horizontal]]
|[[TechDraw_RadiusDimension|New Radius]]
|[[TechDraw_Workbench|TechDraw]]
|IconL=TechDraw_HorizontalDimension.svg
|IconR=TechDraw_RadiusDimension.svg
|IconC=Workbench_TechDraw.svg
}}
</div>

<div class="mw-translate-fuzzy">
{{GuiCommand/ro
|Name=TechDraw Dimension Vertical
|Name/ro=TechDraw Dimension Vertical
|MenuLocation=TechDraw → Dimension Vertical
|Workbenches=[[TechDraw_Workbench|TechDraw]]
|Shortcut=
|SeeAlso=[[TechDraw_LengthDimension|TechDraw Dimension Length]], [[TechDraw_HorizontalDimension|TechDraw Dimension Horizontal]]
}}
</div>

<span id="Description"></span>
==Descriere==
Instrumentul pentru cote verticale adaugă o cotă verticală unei imagini. Cota poate fi între două vârfuri, lungimea unei muchii sau distanța verticală dintre două margini. Distanța va fi inițial distanța proiectată(adică așa cum este reprezentată în desen), dar această distanță poate fi înlocuită prin distanța 3D reală utilizând instrumentul Link Dimension [[Image:LinkDimension.png|24px]].
[[File:VerticalSample.png|200px|center]]
[[File:VerticalSample.png|200px|center]]


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.
==How to use==

# Select the points or edge which define your measurement.
For more information see [[TechDraw_LengthDimension|TechDraw LengthDimension]].
# Press the {{KEY|[[Image:Dimension_Vertical.png|24px]] [[TechDraw Dimension Vertical|Dimension Vertical]]}} button
# A dimension will be added to the View. The dimension may be dragged to the desired position.


[[Image:TechDraw_Dimension_Vertical_example.png|220px]]
==Options==
{{Caption|Vertical dimension taken from two points}}
None.


==Properties==
{{TechDraw DimProps}}


<div class="mw-translate-fuzzy">
==Scripting==
{{Docnav/ro
Vertical dimensions can be added to Pages using Python.
|[[TechDraw_HorizontalDimension|New Horizontal]]
{{Code|code=
|[[TechDraw_RadiusDimension|New Radius]]
dim1 = FreeCAD.ActiveDocument.addObject('TechDraw::DrawViewDimension','Dimension')
|[[TechDraw_Workbench|TechDraw]]
dim1.Type = "DistanceX"
|IconL=TechDraw_HorizontalDimension.svg
dim1.References2D=[(view1, 'Edge1')]
|IconR=TechDraw_RadiusDimension.svg
rc = page.addView(dim1)
|IconC=Workbench_TechDraw.svg
}}
}}
</div>
==Notes==
* All Dimensions are extremely vulnerable to the infamous "topological naming" issue. It is not possible at this time to keep references to 2D (projected) or 3D (actual) geometrical objects in sync with changes in the model. It is recommended that Dimensions be added towards the end of the drawing creation process.


{{TechDraw Tools navi{{#translation:}}}}
{{clear}}
{{Userdocnavi{{#translation:}}}}

Latest revision as of 06:47, 26 July 2023

TechDraw Dimension Vertical

poziția meniului
TechDraw → Dimension Vertical
Ateliere
TechDraw
scurtătură
nici unul
Prezentat în versiune
-
A se vedea, de asemenea,
TechDraw Dimension Length, TechDraw Dimension Horizontal

Descriere

Instrumentul pentru cote verticale adaugă o cotă verticală unei imagini. Cota poate fi între două vârfuri, lungimea unei muchii sau distanța verticală dintre două margini. Distanța va fi inițial distanța proiectată(adică așa cum este reprezentată în desen), dar această distanță poate fi înlocuită prin distanța 3D reală utilizând instrumentul Link Dimension .

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