TechDraw HorizontalDimension/ru: Difference between revisions

From FreeCAD Documentation
No edit summary
(Updating to match new version of source page)
 
(30 intermediate revisions by 3 users not shown)
Line 1: Line 1:
<languages/>
<languages/>

{{Docnav/ru
|[[TechDraw_LengthDimension/ru|Указать длину]]
|[[TechDraw_VerticalDimension/ru|Указать вертикальный размер]]
|[[TechDraw_Workbench/ru|Верстак "TechDraw"]]
|IconL=TechDraw_LengthDimension.svg
|IconR=TechDraw_VerticalDimension.svg
|IconC=Workbench_TechDraw.svg
}}

{{GuiCommand/ru
{{GuiCommand/ru
|Name/ru=Указать горизонтальный размер
|Name=TechDraw Dimension Horizontal
|Name=TechDraw_HorizontalDimension
|Name/ru=TechDraw Dimension Horizontal
|MenuLocation=TechDraw → Размеры → Указать горизонтальный размер
|Workbenches=[[TechDraw Module/ru|TechDraw]]
|Workbenches=[[TechDraw_Workbench/ru|TechDraw]]
|MenuLocation=TechDraw → Dimension Horizontal
|Shortcut=
|Shortcut={{KEY|Shift}} + {{KEY|H}}
|SeeAlso=[[TechDraw_LengthDimension/ru|Указать длину]], [[TechDraw_VerticalDimension/ru|Указать вертикальный размер]]
|SeeAlso=
}}
}}


==Description==
<span id="Description"></span>
==Описание==
The Dimension Horizontal tool adds a horizontal dimension to a View. The dimension may be between two vertices, the length of one edge or the horizontal 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.

[[File:HorizontalSample.png|200px|center]]
The '''TechDraw HorizontalDimension''' tool adds a horizontal dimension to a View. The dimension may be the horizontal distance between two points or the horizontal 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.


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


[[Image:TechDraw_Dimension_Horizontal_example.png|200px]]
==Options==
<div class="mw-translate-fuzzy">
None.
{{Caption|Горизонтальное расстояние указанное между двумя произвольными точками фигуры.}}
</div>


==Properties==
This object has the same properties as the [[TechDraw Dimension Length/ru|TechDraw Dimension Length]] tool. See that tool for details.


{{Docnav/ru
==Scripting==
|[[TechDraw_LengthDimension/ru|Указать длину]]
Horizonatal dimensions can be added to Pages using Python.
|[[TechDraw_VerticalDimension/ru|Указать вертикальный размер]]
{{Code|code=
|[[TechDraw_Workbench/ru|Верстак "TechDraw"]]
dim1 = FreeCAD.ActiveDocument.addObject('TechDraw::DrawViewDimension','Dimension')
|IconL=TechDraw_LengthDimension.svg
dim1.Type = "DistanceX"
|IconR=TechDraw_VerticalDimension.svg
dim1.References2D=[(view1, 'Edge1')]
|IconC=Workbench_TechDraw.svg
rc = page.addView(dim1)
}}
}}
==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:46, 26 July 2023

Other languages:

Указать горизонтальный размер

Системное название
TechDraw_HorizontalDimension
Расположение в меню
TechDraw → Размеры → Указать горизонтальный размер
Верстаки
TechDraw
Быстрые клавиши
Shift + H
Представлено в версии
-
См. также
Указать длину, Указать вертикальный размер

Описание

The TechDraw HorizontalDimension tool adds a horizontal dimension to a View. The dimension may be the horizontal distance between two points or the horizontal 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.

Горизонтальное расстояние указанное между двумя произвольными точками фигуры.