TechDraw Midpoints/ru: Difference between revisions

From FreeCAD Documentation
(Updating to match new version of source page)
(Updating to match new version of source page)
Line 22: Line 22:
==Описание==
==Описание==


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


[[Image:TechDraw_CosmeticMidpoint_Sample.png|250px]]
[[Image:TechDraw_CosmeticMidpoint_Sample.png|250px]]

Revision as of 14:43, 3 June 2023

Other languages:

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

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

Описание

The TechDraw Midpoints tool adds Cosmetic Vertices at the midpoint of one or more selected 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()