Macro Rotate View: Difference between revisions

From FreeCAD Documentation
mNo edit summary
No edit summary
 
(36 intermediate revisions by 6 users not shown)
Line 1: Line 1:
<languages/>
{{Macro|Name=Rotate View by 90°|Description=This macro rotates the current view by 90° to the left. Only works if you are in Top view|Author=Yorik}}
<translate>
<!--T:1-->
{{Macro
|Name=Macro Rotate View by 90°
|Icon=Macro Rotate View view 90 Degrees.png
|Description=This macro rotates the current view by 90° to the left. Only works if you are in [[Std_ViewTop|Top view]].
|Author=Yorik
|Version=01.00
|Date=2010-11-17
|FCVersion=All
|Download=[https://wiki.freecad.org/images/a/a0/Macro_Rotate_View_view_90_Degrees.png ToolBar Icon]
|SeeAlso=[[Macro_Rotate_ViewAxonometric|Macro Rotate ViewAxonometric]], [[Macro_Rotate_View_Free|Macro Rotate View Free]]
}}


==Description== <!--T:2-->
import math
from pivy import coin
cam = Gui.ActiveDocument.ActiveView.getCameraNode()
rot = coin.SbRotation()
rot.setValue(coin.SbVec3f(0,0,1),math.pi/2)
nrot = cam.orientation.getValue() * rot
cam.orientation = nrot


<!--T:9-->
{{languages | {{es|Macro_Rotate_View/es}} }}
This macro rotates the current view by 90° to the left.

==Limitations== <!--T:11-->

<!--T:12-->
Only works if you are in Top view: [[Image:View-top.svg|Std_ViewTop|16px|link=Std_ViewTop]] [[Std_ViewTop|XY (top)]]

==Script== <!--T:10-->

<!--T:13-->
ToolBar Icon [[Image:Macro Rotate View view 90 Degrees.png]]

</translate>
'''Macro_Rotate_View_90_Degrees.FCMacro'''

{{MacroCode|code=
import math
from pivy import coin
cam = Gui.ActiveDocument.ActiveView.getCameraNode()
rot = coin.SbRotation()
rot.setValue(coin.SbVec3f(0,0,1),math.pi/2)
nrot = cam.orientation.getValue() * rot
cam.orientation = nrot
}}


{{clear}}

Latest revision as of 10:58, 30 December 2023

Macro Rotate View by 90°

Description
This macro rotates the current view by 90° to the left. Only works if you are in Top view.

Macro version: 01.00
Last modified: 2010-11-17
FreeCAD version: All
Download: ToolBar Icon
Author: Yorik
Author
Yorik
Download
ToolBar Icon
Links
Macro Version
01.00
Date last modified
2010-11-17
FreeCAD Version(s)
All
Default shortcut
None
See also
Macro Rotate ViewAxonometric, Macro Rotate View Free

Description

This macro rotates the current view by 90° to the left.

Limitations

Only works if you are in Top view: Std_ViewTop XY (top)

Script

ToolBar Icon

Macro_Rotate_View_90_Degrees.FCMacro

import math
from pivy import coin
cam = Gui.ActiveDocument.ActiveView.getCameraNode()
rot = coin.SbRotation()
rot.setValue(coin.SbVec3f(0,0,1),math.pi/2)
nrot = cam.orientation.getValue() * rot
cam.orientation = nrot