Std ViewTop/ru: Difference between revisions

From FreeCAD Documentation
(Updating to match new version of source page)
No edit summary
 
(6 intermediate revisions by 2 users not shown)
Line 1: Line 1:
<languages/>
<languages/>


<div class="mw-translate-fuzzy">
{{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
|IconC=Freecad.svg
|IconC=Freecad.svg
}}
}}
</div>


{{GuiCommand/ru
{{GuiCommand/ru
|Name=Std ViewTop
|Name/ru=Сверху
|Name/ru=Std ViewTop
|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 28: Line 26:
{{Caption|Arrow 2 points in the direction of the top view}}
{{Caption|Arrow 2 points in the direction of the top view}}


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


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


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


{{Emphasis|Смотри так же:}} [[FreeCAD_Scripting_Basics/ru|Основы скриптов в FreeCAD]].
{{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 49: Line 47:
}}
}}


<div class="mw-translate-fuzzy">
{{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
|IconC=Freecad.svg
|IconC=Freecad.svg
}}
}}
</div>


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

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()