TechDraw VerticalExtentDimension/ru: Difference between revisions

From FreeCAD Documentation
No edit summary
(Created page with "{{GuiCommand/ru |Name/ru=Указать вертикальный габаритный размер |Name=TechDraw_VerticalExtentDimension |MenuLocation=TechDraw → Разме...")
Line 10: Line 10:
}}
}}


{{GuiCommand
{{GuiCommand/ru
|Name/ru=Указать вертикальный габаритный размер
|Name=TechDraw VerticalExtentDimension
|Name=TechDraw_VerticalExtentDimension
|MenuLocation=TechDraw → Dimensions → Insert Vertical Extent Dimension
|MenuLocation=TechDraw → Размеры → Указать вертикальный габаритный размер
|Workbenches=[[TechDraw_Workbench|TechDraw]]
|Workbenches=[[TechDraw_Workbench/ru|TechDraw]]
|Version=0.19
|Version=0.19
|SeeAlso=[[TechDraw_LengthDimension|TechDraw LengthDimension]], [[TechDraw_HorizontalExtentDimension|TechDraw HorizontalExtentDimension]]
|SeeAlso=[[TechDraw_LengthDimension/ru|Указать длину]], [[TechDraw_HorizontalExtentDimension/ru|Указать горизонтальный габаритный размер]]
}}
}}



Revision as of 20:15, 15 September 2021

Other languages:

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

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

Описание

The Vertical Extent Dimension 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.

Vertical Extent dimension of BSpline Face

Применение

  1. Select a View or a collection of Edges in a View.
  2. Press the Vertical Extent Dimension button
  3. A dimension will be added to the View. The dimension may be dragged to the desired position.

Ограничения

Dimension objects are vulnerable to the "topological naming problem". See TechDraw LengthDimension for more information.

Свойства

See TechDraw LengthDimension. Exceptions noted below.

Данные

  • Данные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.

Программирование

См. так же: TechDraw API и Основы составления скриптов FreeCAD.

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

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