TechDraw 3PtAngleDimension/ru: Difference between revisions

From FreeCAD Documentation
No edit summary
No edit summary
(One intermediate revision by the same user not shown)
Line 10: Line 10:
}}
}}


{{GuiCommand
{{GuiCommand/ru
|Name/ru=Указать угловой размер по 3 точкам
|Name=TechDraw 3PtAngleDimension
|Name=TechDraw_3PtAngleDimension
|MenuLocation=TechDraw → Insert 3-Point Angle Dimension
|MenuLocation=TechDraw → Указать угловой размер по 3 точкам
|Workbenches=[[TechDraw_Workbench|TechDraw]]
|Workbenches=[[TechDraw_Workbench/ru|TechDraw]]
|Version=0.18
|Version=0.18
|SeeAlso=[[TechDraw_AngleDimension|TechDraw AngleDimension]]
|SeeAlso=[[TechDraw_AngleDimension/ru|Указать угловой размер]]
}}
}}


Line 56: Line 57:




<div class="mw-translate-fuzzy">
{{Docnav/ru
{{Docnav/ru
|[[TechDraw_AngleDimension/ru|Указать угловой размер]]
|[[TechDraw_Dimension_Angle/ru|Dimension Angle]]
|[[TechDraw_HorizontalExtentDimension/ru|Указать горизонтальный габаритный размер]]
|[[TechDraw_Dimension_Horizontal_Extent/ru|Dimension Horizontal Extent]]
|[[TechDraw_Workbench/ru|Верстак "TechDraw"]]
|[[TechDraw_Workbench/ru|Верстак "TechDraw"]]
|IconL=TechDraw_Dimension_Angle.svg
|IconL=TechDraw_AngleDimension.svg
|IconR=TechDraw_Dimension_Horizontal_Extent.svg
|IconR=TechDraw_HorizontalExtentDimension.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:

Указать угловой размер по 3 точкам

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

Описание

The 3-Point Angle Dimension tool adds a angular dimension to a View. The dimension may be specified by selecting three Vertices on a View. Note that the second of the three Vertices is the apex of the angle. The Angle3Pt will initially be the projected angle (ie as shown on the drawing), but this may be changed to the actual 3D distance using the TechDraw LinkDimension tool.

Measuring the angle between two straight lines using three vertices; the second vertex should be the apex of the angle

Применение

  1. Select the points or edge which define your measurement.
  2. Press the 3-Point Angle Dimension button
  3. A dimension will be added to the View. The dimension may be dragged to the desired position.
  4. If needed, add tolerances as described in this page.

To change the properties of a dimension object either double-clicking it in the drawing or in the Tree view. This will open the dimension dialog.

Ограничения

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

Свойства

See TechDraw LengthDimension.

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

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

The 3-Point Angle Dimension tool can be used in macros and from the Python console by using the following functions:

dim1 = FreeCAD.ActiveDocument.addObject('TechDraw::DrawViewDimension','Dimension')
dim1.Type = "Angle3Pt"
dim1.References2D=[(view1, 'Vertex1',(view1, 'Vertex4'),(view1, 'Vertex2'))]
rc = page.addView(dim1)