TechDraw "Показать/скрыть невидимые грани"

From FreeCAD Documentation
Revision as of 20:39, 15 September 2021 by Evgeniy (talk | contribs) (Created page with "{{GuiCommand/ru |Name/ru=Показать/скрыть невидимые края |Name=TechDraw_ShowAll |MenuLocation=TechDraw → ShowAll |Workbenches=TechDraw_Workbench/...")
Other languages:

Показать/скрыть невидимые края

Системное название
TechDraw_ShowAll
Расположение в меню
TechDraw → ShowAll
Верстаки
TechDraw
Быстрые клавиши
Нет
Представлено в версии
0.19
См. также
Изменить внешний вид линий

Описание

The ShowAll tool shows or hide invisible lines in a View. Note that "invisible" is a cosmetic state, not to be confused with hidden lines which are geometric constructs.

Применение

  1. Select a View on a Page or in the tree.
  2. Press the Show/Hide Invisible Edges button
  3. The state of the invisible lines in the View will be reversed.

Свойства

The ShowAll tool has no properties, as it is not a Document Object.

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

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

The effect of the ShowAll tool can be duplicated in macros or the Python console.

>>> v = App.ActiveDocument.View
>>> vvo = v.ViewObject
>>> vvo.ShowAllEdges = True
>>> App.activeDocument().recompute()