Std AxisCross/ru: Difference between revisions

From FreeCAD Documentation
No edit summary
(Updating to match new version of source page)
 
(One intermediate revision by one other user not shown)
Line 22: Line 22:
</div>
</div>


<span id="Description"></span>
==Описание==
==Описание==


Line 31: Line 32:
{{Caption|The axis cross (the letters are not part of the axis cross)}}
{{Caption|The axis cross (the letters are not part of the axis cross)}}


<span id="Usage"></span>
==Применение==
==Применение==


Line 37: Line 39:
#* Use the keyboard shortcut: {{KEY|A}} then {{KEY|C}}.
#* Use the keyboard shortcut: {{KEY|A}} then {{KEY|C}}.


<span id="Notes"></span>
==Примечания==
==Примечания==


Line 42: Line 45:
* The [[Navigation_Cube|Navigation Cube]] also includes a coordinate system indicator.
* The [[Navigation_Cube|Navigation Cube]] also includes a coordinate system indicator.


<span id="Preferences"></span>
==Настройки==
==Настройки==


* The default for the axis cross can be changed in the preferences: {{MenuCommand|Edit → Preferences... → Display → 3D view → Show axis cross by default}}. See [[Preferences_Editor#3D_View|Preferences Editor]]. {{Version|0.19}}
* The default for the axis cross can be changed in the preferences: {{MenuCommand|Edit → Preferences... → Display → 3D view → Show axis cross by default}}. See [[Preferences_Editor#3D_View|Preferences Editor]].


==Scripting==
==Scripting==
Line 60: Line 64:




<div class="mw-translate-fuzzy">
{{Docnav/ru
{{Docnav/ru
|[[Std_ViewFullscreen/ru|Std ViewFullscreen]]
|[[Std_ViewFullscreen/ru|Команда "На весь экран"]]
|[[Std_ToggleClipPlane/ru|Std ToggleClipPlane]]
|[[Std_ToggleClipPlane/ru|Команда "Плоскость сечения"]]
|[[Std_View_Menu/ru|Std View Menu]]
|[[Std_View_Menu/ru|Меню "Вид"]]
|IconL=Std_ViewFullscreen.svg
|IconL=Std_ViewFullscreen.svg
|IconR=
|IconR=Std_ToggleClipPlane.svg
|IconC=Freecad.svg
|IconC=Freecad.svg
}}
}}
</div>


{{Std Base navi{{#translation:}}}}
{{Std Base navi{{#translation:}}}}

Latest revision as of 16:19, 20 May 2023

Other languages:

Std AxisCross

Системное название
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)

Применение

  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.

Примечания

  • 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.

Настройки

  • The default for the axis cross can be changed in the preferences: Edit → Preferences... → Display → 3D view → Show axis cross by default. See Preferences Editor.

Scripting

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

Чтобы показать или скрыть оси координат, используйте метод setAxisCrossобъекта ActiveView. Этот метод не доступен, когда FreeCAD в режиме консоли.

import FreeCADGui

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