TechDraw VerticalExtentDimension/ru: Difference between revisions

From FreeCAD Documentation
(Updating to match new version of source page)
(Updating to match new version of source page)
 
Line 22: Line 22:
==Описание==
==Описание==


The '''TechDraw VerticalExtentDimension''' 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.
The '''TechDraw VerticalExtentDimension''' 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.

For more information see [[TechDraw_HorizontalExtentDimension|TechDraw HorizontalExtentDimension]].


[[Image:TechDraw_Dimension_Horizontal_Extent_example.png|400px]]
[[Image:TechDraw_Dimension_Horizontal_Extent_example.png|400px]]
{{Caption|Vertical Extent dimension of B-spline Face}}
{{Caption|Horizontal and vertical extent dimensions of a B-spline}}

<span id="Usage"></span>
==Применение==

# Select a View or a collection of Edges in a View.
# Press the {{Button|[[Image:TechDraw_VerticalExtentDimension.svg|16px]] [[TechDraw_VerticalExtentDimension|Vertical Extent Dimension]]}} button
# A dimension will be added to the View. The dimension may be dragged to the desired position.

<span id="Limitations"></span>
== Ограничения ==

Dimension objects are vulnerable to the "[[Topological_naming_problem|topological naming problem]]". See [[TechDraw_LengthDimension|TechDraw LengthDimension]] for more information.

<span id="Properties"></span>
==Свойства==

See [[TechDraw_LengthDimension#Properties|TechDraw LengthDimension]]. Exceptions noted below.

<span id="Data"></span>
=== Данные ===

* {{PropertyData|MeasureType}}: {{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.

<span id="Scripting"></span>
==Программирование==

{{Emphasis|См. так же:}} [[TechDraw_API/ru|TechDraw API]] и [[FreeCAD_Scripting_Basics/ru|Основы составления скриптов FreeCAD]].

The Vertical Extent Dimension tool can be used in [[Macros|macros]] and from the [[Python|Python]] console by using the following functions:

{{Code|code=
selection = [(view1, 'Edge1'), (view1, 'Edge2')] #or [] for all
hExtentDim = TechDraw.Dimension.makeExtentDim(selection, VERTICAL)
rc = page.addView(hExtentDim)
}}





Latest revision as of 19:03, 27 July 2023

Other languages:

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

Системное название
TechDraw_VerticalExtentDimension
Расположение в меню
TechDraw → Размеры → Указать вертикальный габаритный размер
Верстаки
TechDraw
Быстрые клавиши
Нет
Представлено в версии
0.19
См. также
Указать длину, Указать горизонтальный габаритный размер

Описание

The TechDraw VerticalExtentDimension 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.

For more information see TechDraw HorizontalExtentDimension.

Horizontal and vertical extent dimensions of a B-spline