Std ViewTop/ru: Difference between revisions

From FreeCAD Documentation
(Created page with "==Описание==")
No edit summary
 
(11 intermediate revisions by 3 users not shown)
Line 2: Line 2:


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


{{GuiCommand/ru
{{GuiCommand/ru
|Name=Std ViewTop
|Name/ru=Сверху
|Name=Std_ViewTop
|MenuLocation=Виды → Стандартные видыСВерху
|MenuLocation=Вид → Стандартные виды‏‎Сверху
|Workbenches=All
|Workbenches=Все
|Shortcut={{KEY|2}}
|Shortcut={{KEY|2}}
|SeeAlso=[[Std_ViewFront/ru|Std ViewFront]], [[Std_ViewRight/ru|Std ViewRight]]
|SeeAlso=[[Std_ViewFront/ru|Спереди]], [[Std_ViewRight/ru|Справа]]
}}
}}


Line 25: Line 26:
{{Caption|Arrow 2 points in the direction of the top view}}
{{Caption|Arrow 2 points in the direction of the top view}}


==Применение==
==Usage==


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


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


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


To change to top view use the {{incode|viewTop}} method of the ActiveView object. This method is not available if FreeCAD is in console mode.
To change to top view use the {{incode|viewTop}} method of the ActiveView object. This method is not available if FreeCAD is in console mode.
Line 46: Line 47:
}}
}}


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

Latest revision as of 19:41, 10 September 2021

Other languages:

Сверху

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

Описание

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

Arrow 2 points in the direction of the top view

Применение

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

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

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

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

import FreeCADGui

FreeCADGui.ActiveDocument.ActiveView.viewTop()
FreeCADGui.ActiveDocument.ActiveView.getViewDirection()