|
Menu location |
---|
View → Toggle axis cross |
Workbenches |
All |
Default shortcut |
A C |
Introduced in version |
- |
See also |
None |
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.
See also: Autogenerated API documentation and FreeCAD Scripting Basics.
Use the setAxisCross
method of the View object to toggle the axis cross.
import FreeCADGui
view = FreeCADGui.ActiveDocument.ActiveView
view.setAxisCross(True)
view.hasAxisCross()