TechDraw Midpoints/ru: Difference between revisions

From FreeCAD Documentation
(Created page with "==Программирование==")
(Created page with "{{GuiCommand/ru |Name/ru=Добавить вершины по центрам граней |Name=TechDraw_Midpoints |MenuLocation=TechDraw → Добавить Вершины...")
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:
<languages/>
<languages/>


{{Docnav
{{Docnav/ru
|[[TechDraw_CosmeticVertex|CosmeticVertex]]
|[[TechDraw_CosmeticVertex/ru|Добавить вспомогательную вершину]]
|[[TechDraw_Quadrants|Quadrants]]
|[[TechDraw_Quadrants/ru|Добавить 4-ре вершины по краям окружности]]
|[[TechDraw_Workbench|TechDraw]]
|[[TechDraw_Workbench/ru|Верстак "TechDraw"]]
|IconL=TechDraw_CosmeticVertex.svg
|IconL=TechDraw_CosmeticVertex.svg
|IconR=TechDraw_Quadrants.svg
|IconR=TechDraw_Quadrants.svg
Line 10: Line 10:
}}
}}


{{GuiCommand
{{GuiCommand/ru
|Name/ru=Добавить вершины по центрам граней
|Name=TechDraw Midpoints
|Name=TechDraw_Midpoints
|MenuLocation=TechDraw → Add Vertices → Add Midpoints Vertices
|MenuLocation=TechDraw → Добавить Вершины → Add Midpoints Vertices
|Workbenches=[[TechDraw_Workbench|TechDraw]]
|Workbenches=[[TechDraw_Workbench/ru|TechDraw]]
|Version=0.19
|Version=0.19
|SeeAlso=[[TechDraw_CosmeticVertex|TechDraw Cosmetic Vertex]], [[TechDraw_Quadrants|TechDraw Quadrant Vertices]]
|SeeAlso=[[TechDraw_CosmeticVertex/ru|Добавить вспомогательную вершину]], [[TechDraw_Quadrants/ru|Добавить 4-ре вершины по краям окружности]]
}}
}}


Line 50: Line 51:




{{Docnav
{{Docnav/ru
|[[TechDraw_CosmeticVertex|CosmeticVertex]]
|[[TechDraw_CosmeticVertex/ru|Добавить вспомогательную вершину]]
|[[TechDraw_Quadrants|Quadrants]]
|[[TechDraw_Quadrants/ru|Добавить 4-ре вершины по краям окружности]]
|[[TechDraw_Workbench|TechDraw]]
|[[TechDraw_Workbench/ru|Верстак "TechDraw"]]
|IconL=TechDraw_CosmeticVertex.svg
|IconL=TechDraw_CosmeticVertex.svg
|IconR=TechDraw_Quadrants.svg
|IconR=TechDraw_Quadrants.svg

Revision as of 20:33, 15 September 2021

Other languages:

Добавить вершины по центрам граней

Системное название
TechDraw_Midpoints
Расположение в меню
TechDraw → Добавить Вершины → Add Midpoints Vertices
Верстаки
TechDraw
Быстрые клавиши
Нет
Представлено в версии
0.19
См. также
Добавить вспомогательную вершину, Добавить 4-ре вершины по краям окружности

Описание

The Midpoints tool adds Cosmetic Vertices at the midpoints of one or more Edges.

Cosmetic Vertices at midpoints of Edges

Применение

  1. Select one or more Edges in a View.
  2. Press the Add Midpoint Vertices button
  3. Cosmetic Vertices will be added at the mid-point(s) of the Edge(s).

To delete a Midpoint, select it and use the toolbar button Remove Cosmetic Object.

Свойства

Cosmetic Vertices have no properties of their own, as they are not Document Objects. They share color and size settings with regular geometry vertices.

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

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

Cosmetic Vertices are not accessible from macros or the Python console at this time. This snippet will remove all Cosmetic Vertices from the View.

>>> v = App.ActiveDocument.View
>>> v.clearCV()
>>> App.activeDocument().recompute()