Macro Rotate View/it: Difference between revisions

From FreeCAD Documentation
(Updating to match new version of source page)
No edit summary
 
(41 intermediate revisions by 5 users not shown)
Line 1: Line 1:
<languages/>
{{Macro/it|Icon=Text-x-python|Name=Rotate View by 90°|Name/it=Rotate View by 90°|Description=Questa macro ruota la vista corrente di 90° a sinistra. Funziona solo se si è in vista dall'alto|Author=Yorik}}
{{Macro/it
|Name=Macro Rotate View by 90°
|Icon=Macro Rotate View view 90 Degrees.png
|Translate=Ruota la vista di 90°
|Description=Questa macro ruota la vista corrente di 90° a sinistra. Funziona solo se si è in vista dall'alto
|Author=Yorik
|Version=01.00
|Date=2010-11-17
|FCVersion=Tutte
|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]]
}}


<span id="Description"></span>
Questa macro ruota la vista corrente di 90° a sinistra. Funziona solo se si è in vista dall'alto
==Descrizione==


Questa macro ruota la vista corrente di 90° a sinistra.


<span id="Limitations"></span>
{{Code|code=
==Limitazioni==

Funziona solo se si è in vista dall'alto
[[Image:View-top.svg|Std_ViewTop|16px|link=Std_ViewTop]] [[Std_ViewTop/it|XY (top)]]

==Script==

Icona barra strumenti [[Image:Macro Rotate View view 90 Degrees.png]]

'''Macro_Rotate_View_90_Degrees.FCMacro'''

{{MacroCode|code=
import math
import math
from pivy import coin
from pivy import coin
Line 12: Line 38:
nrot = cam.orientation.getValue() * rot
nrot = cam.orientation.getValue() * rot
cam.orientation = nrot
cam.orientation = nrot

}}
}}
{{clear}}
==Description==


This def paste in the Python console FreeCAD (or your macro) allows you to rotate the view in 3-axis and the angle (in degrees) give

interesting to create a plan to a desired position
==Use==

paste the code in the Python console FreeCAD and type {{KEY|Enter}} > {{KEY|Enter}}
==Script==
{{Code|code=
def RotateView(axisX=1.0,axisY=0.0,axisZ=0.0,angle=45.0):
import math
from pivy import coin
try:
cam = Gui.ActiveDocument.ActiveView.getCameraNode()
rot = coin.SbRotation()
rot.setValue(coin.SbVec3f(axisX,axisY,axisZ),math.radians(angle))
nrot = cam.orientation.getValue() * rot
cam.orientation = nrot
print axisX," ",axisY," ",axisZ," ",angle
except Exception:
print "Not ActiveView "
}}

tip in the console ex :

{{Code|code=
RotateView(0,1,0,45)
}}

if there is no open document an error is returned


{{clear}}
{{clear}}
<languages/>

Latest revision as of 08:45, 5 January 2024

Ruota la vista di 90°

Descrizione
Questa macro ruota la vista corrente di 90° a sinistra. Funziona solo se si è in vista dall'alto

Versione macro: 01.00
Ultima modifica: 2010-11-17
Versione FreeCAD: Tutte
Download: ToolBar Icon
Autore: Yorik
Autore
Yorik
Download
ToolBar Icon
Link
Versione macro
01.00
Data ultima modifica
2010-11-17
Versioni di FreeCAD
Tutte
Scorciatoia
Nessuna
Vedere anche
Macro Rotate ViewAxonometric, Macro Rotate View Free

Descrizione

Questa macro ruota la vista corrente di 90° a sinistra.

Limitazioni

Funziona solo se si è in vista dall'alto Std_ViewTop XY (top)

Script

Icona barra strumenti

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