Std AxisCross |
Расположение в меню |
---|
Вид → Показать/скрыть оси координат |
Верстаки |
All |
Быстрые клавиши |
A C |
Представлено в версии |
- |
См. также |
Нет |
The Std AxisCross command toggles the axis cross in the active 3D view.
The axis cross consists of three arrows representing the positive X, Y and Z axis of the global coordinate system. Their common start point is the origin of the global coordinate system.
The axis cross (the letters are not part of the axis cross)
See also: Preferences Editor.
Смотрите так же: Основы составления скриптов в FreeCAD.
Чтобы показать или скрыть оси координат, используйте метод setAxisCross
объекта ActiveView. Этот метод не доступен, когда FreeCAD в режиме консоли.
import FreeCADGui
view = FreeCADGui.ActiveDocument.ActiveView
view.setAxisCross(True)
view.hasAxisCross()