TechDraw HorizontalExtentDimension/ru: Difference between revisions

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




<div class="mw-translate-fuzzy">
{{Docnav/ru
{{Docnav/ru
|[[TechDraw_3PtAngleDimension/ru|Указать угловой размер по 3 точкам]]
|[[TechDraw_Dimension_Angle3Pt/ru|Dimension Angle3Pt]]
|[[TechDraw_VerticalExtentDimension/ru|Указать вертикальный габаритный размер]]
|[[TechDraw_Dimension_Vertical_Extent/ru|Dimension Vertical Extent]]
|[[TechDraw_Workbench/ru|Верстак "TechDraw"]]
|[[TechDraw_Workbench/ru|Верстак "TechDraw"]]
|IconL=TechDraw_Dimension_Angle3Pt.svg
|IconL=TechDraw_3PtAngleDimension.svg
|IconR=TechDraw_Dimension_Vertical_Extent.svg
|IconR=TechDraw_VerticalExtentDimension.svg
|IconC=Workbench_TechDraw.svg
|IconC=Workbench_TechDraw.svg
}}
}}
</div>


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

Revision as of 20:14, 15 September 2021

Other languages:

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

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

Описание

The Horizontal Extent Dimension tool adds a linear dimension to a View. The dimension extends from the left most point on the selected objects to the right most point. A CosmeticVertex will be placed at each point.

Horizontal Extent dimension of BSpline Face

Применение

  1. Select a View or a collection of Edges in a View.
  2. Press the Horizontal 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 Horizontal Extent.

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

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

The Horizontal 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, HORIZONTAL)
rc = page.addView(hExtentDim)