TechDraw Midpoints/ru: Difference between revisions

From FreeCAD Documentation
(Created page with "{{GuiCommand/ru |Name/ru=Добавить вершины по центрам граней |Name=TechDraw_Midpoints |MenuLocation=TechDraw → Добавить Вершины...")
(Updating to match new version of source page)
Line 19: Line 19:
}}
}}


<span id="Description"></span>
==Описание==
==Описание==


The Midpoints tool adds Cosmetic [[Glossary#V|Vertices]] at the midpoints of one or more Edges.
The '''TechDraw Midpoints''' tool adds Cosmetic [[Glossary#V|Vertices]] at the midpoints of one or more Edges.


[[Image:TechDraw_CosmeticMidpoint_Sample.png|250px]]
[[Image:TechDraw_CosmeticMidpoint_Sample.png|250px]]
{{Caption|Cosmetic Vertices at midpoints of Edges}}
{{Caption|Cosmetic Vertices at midpoints of Edges}}


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


Line 34: Line 36:
To delete a Midpoint, select it and use the toolbar button {{Button|[[Image:TechDraw_CosmeticEraser.svg|16px]] [[TechDraw_CosmeticEraser|Remove Cosmetic Object]]}}.
To delete a Midpoint, select it and use the toolbar button {{Button|[[Image:TechDraw_CosmeticEraser.svg|16px]] [[TechDraw_CosmeticEraser|Remove Cosmetic Object]]}}.


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


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


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



Revision as of 08:43, 29 May 2023

Other languages:

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

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

Описание

The TechDraw 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()