Macro Rotate View: Difference between revisions

From FreeCAD Documentation
(Test again MacroCode, as syntax highlighting doesn't work.)
Tag: Undo
No edit summary
Line 3: Line 3:
<!--T:1-->
<!--T:1-->
{{Macro
{{Macro
|Name=Rotate View by 90°
|Name=Macro Rotate View by 90°
|Icon=Macro Rotate View view 90 Degrees.png
|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]].
|Description=This macro rotates the current view by 90° to the left. Only works if you are in [[Std_ViewTop|Top view]].
Line 25: Line 25:


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

</translate>
ToolBar Icon [[Image:Macro Rotate View view 90 Degrees.png]]
ToolBar Icon [[Image:Macro Rotate View view 90 Degrees.png]]


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



Revision as of 11:49, 17 July 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: Macro_Rotate_View_view_90_Degrees
Author: Yorik
Author
Yorik
Download
Macro_Rotate_View_view_90_Degrees
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