Std ViewRear/ru: Difference between revisions

From FreeCAD Documentation
(Created page with "{{Docnav/ru |Std ViewRight |Std ViewBottom |Std View Menu |IconL=Std_ViewRight.svg |IconR=Std_ViewBottom.svg |I...")
(Created page with "==Программирование==")
 
(8 intermediate revisions by 3 users not shown)
Line 2: Line 2:


{{Docnav/ru
{{Docnav/ru
|[[Std_ViewRight/ru|Std ViewRight]]
|[[Std_ViewRight/ru|Команда "Справа"]]
|[[Std_ViewBottom/ru|Std ViewBottom]]
|[[Std_ViewBottom/ru|Команда "Снизу"]]
|[[Std_View_Menu/ru|Std View Menu]]
|[[Std_View_Menu/ru|Меню "Вид"]]
|IconL=Std_ViewRight.svg
|IconL=Std_ViewRight.svg
|IconR=Std_ViewBottom.svg
|IconR=Std_ViewBottom.svg
Line 11: Line 11:


{{GuiCommand/ru
{{GuiCommand/ru
|Name=Std ViewRear
|Name/ru=Сзади
|Name/ru=Std ViewRear
|Name=Std_ViewRear
|MenuLocation=Виды → Стандартные виды → Сзади
|MenuLocation=Вид → Стандартные виды‏‎ → Сзади
|Workbenches=All
|Workbenches=Все
|Shortcut={{KEY|4}}
|Shortcut={{KEY|4}}
|SeeAlso=[[Std_ViewBottom/ru|Std ViewBottom]], [[Std_ViewLeft/ru|Std ViewLeft]]
|SeeAlso=[[Std_ViewBottom/ru|Снизу]], [[Std_ViewLeft/ru|Слева]]
}}
}}


Line 26: Line 26:
{{Caption|Arrow 4 points in the direction of the rear view}}
{{Caption|Arrow 4 points in the direction of the rear view}}


==Применение==
==Использование==


# There are several ways to invoke the command:
# There are several ways to invoke the command:
Line 34: Line 34:
#* Use the keyboard shortcut: {{KEY|4}}.
#* Use the keyboard shortcut: {{KEY|4}}.


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


{{Emphasis|Смотри так же:}} [[FreeCAD_Scripting_Basics/ru|Основы скриптов в FreeCAD]].
{{Emphasis|Смотрите так же:}} [[FreeCAD_Scripting_Basics/ru|Основы составления скриптов в FreeCAD]].


To change to rear view use the {{incode|viewRear}} method of the ActiveView object. This method is not available if FreeCAD is in console mode.
To change to rear view use the {{incode|viewRear}} method of the ActiveView object. This method is not available if FreeCAD is in console mode.
Line 48: Line 48:


{{Docnav/ru
{{Docnav/ru
|[[Std_ViewRight/ru|Std ViewRight]]
|[[Std_ViewRight/ru|Команда "Справа"]]
|[[Std_ViewBottom/ru|Std ViewBottom]]
|[[Std_ViewBottom/ru|Команда "Снизу"]]
|[[Std_View_Menu/ru|Std View Menu]]
|[[Std_View_Menu/ru|Меню "Вид"]]
|IconL=Std_ViewRight.svg
|IconL=Std_ViewRight.svg
|IconR=Std_ViewBottom.svg
|IconR=Std_ViewBottom.svg

Latest revision as of 19:42, 10 September 2021

Other languages:

Сзади

Системное название
Std_ViewRear
Расположение в меню
Вид → Стандартные виды‏‎ → Сзади
Верстаки
Все
Быстрые клавиши
4
Представлено в версии
-
См. также
Снизу, Слева

Описание

The Std ViewRear command points the camera in the active 3D view in the direction of the negative Y axis.

Arrow 4 points in the direction of the rear view

Применение

  1. There are several ways to invoke the command:
    • Press the Std ViewRear button.
    • Select the View → Standard views → Rear option from the menu.
    • Select the Standard views → Rear option from the 3D view context menu.
    • Use the keyboard shortcut: 4.

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

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

To change to rear view use the viewRear method of the ActiveView object. This method is not available if FreeCAD is in console mode.

import FreeCADGui

FreeCADGui.ActiveDocument.ActiveView.viewRear()
FreeCADGui.ActiveDocument.ActiveView.getViewDirection()