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)
(One intermediate revision by the same user not shown)
Line 40: Line 40:


* The created cosmetic vertices are not parametrically linked to the selected edges.
* The created cosmetic vertices are not parametrically linked to the selected edges.
* To delete a cosmetic vertex use [[Image:TechDraw_CosmeticEraser.svg|16px]] [[TechDraw_CosmeticEraser|TechDraw CosmeticEraser]].
* To delete a cosmetic vertex select it and press {{KEY|Delete}}. {{Version|0.22}}


<span id="Properties"></span>
<span id="Properties"></span>

Revision as of 09:01, 3 April 2024

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 the midpoint of edges

Применение

  1. Select one or more edges in a view.
  2. There are several ways to invoke the tool:
    • Press the Add Midpoint Vertices button.
    • Select the TechDraw → Add Vertices → Add Midpoint Vertices option from the menu.

Notes

  • The created cosmetic vertices are not parametrically linked to the selected edges.
  • To delete a cosmetic vertex select it and press Delete. introduced in version 0.22

Свойства

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