Macro Ruota la vista di 90°

From FreeCAD Documentation
Revision as of 17:20, 25 December 2013 by FuzzyBot (talk | contribs) (Updating to match new version of source page)

File:Text-x-python 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
Author
Yorik
Download
None
Links
Macro Version
1.0
Date last modified
None
FreeCAD Version(s)
None
Default shortcut
None
See also
None

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


 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