Std AxisCross/pl: Difference between revisions

From FreeCAD Documentation
(Created page with "{{Docnav/pl |Wyświetl na pełnym ekranie |Przełącz płaszczyznę tnącą |Menu Widok |IconL=Std_Vi...")
(Created page with "{{GuiCommand/pl |Name=Std AxisCross |Name/pl=Std: Symbol osi |MenuLocation=Widok → Pokaż / ukryj symbol osi |Workbenches=wszystkie |Shortcut={{KEY|A}} {{KEY|C}} }}")
Line 10: Line 10:
}}
}}


{{GuiCommand
{{GuiCommand/pl
|Name=Std AxisCross
|Name=Std AxisCross
|Name/pl=Std: Symbol osi
|MenuLocation=ViewToggle axis cross
|MenuLocation=WidokPokaż / ukryj symbol osi
|Workbenches=All
|Workbenches=wszystkie
|Shortcut={{KEY|A}} {{KEY|C}}
|Shortcut={{KEY|A}} {{KEY|C}}
}}
}}

Revision as of 11:27, 28 June 2022

Std: Symbol osi

Lokalizacja w menu
Widok → Pokaż / ukryj symbol osi
Środowisko pracy
wszystkie
Domyślny skrót
A C
Wprowadzono w wersji
-
Zobacz także
brak

Description

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)

Usage

  1. There are several ways to invoke the command:
    • Select the View → Toggle axis cross option from the menu.
    • Use the keyboard shortcut: A then C.

Notes

  • FreeCAD can display a smaller coordinate system indicator in the bottom right corner of 3D views: Edit → Preferences... → Display → 3D View → Show coordinate system in the corner. See Preferences Editor.
  • The Navigation Cube also includes a coordinate system indicator.

Preferences

Scripting

See also: FreeCAD Scripting Basics.

To toggle the axis cross use the setAxisCross method of the ActiveView object. This method is not available if FreeCAD is in console mode.

import FreeCADGui

FreeCADGui.ActiveDocument.ActiveView.setAxisCross(True)
FreeCADGui.ActiveDocument.ActiveView.hasAxisCross()