FreeCAD-Doc/localwiki/Macro_Rotate_View-it.html
2018-07-19 18:47:02 -05:00

128 lines
6.5 KiB
HTML

<html><head><title>Macro Rotate View/it</title><meta http-equiv="Content-Type" content="text/html; charset=utf-8"><link type='text/css' href='wiki.css' rel='stylesheet'></head><body><h1>Macro Rotate View/it</h1></div>
<div id="mw-content-text" lang="it" dir="ltr" class="mw-content-ltr"><hr/><div class="mw-parser-output"><table class="fcinfobox wikitable ct" width="100%" style="float: right; width: 230px; margin-left: 10px;">
<tr>
<td class="ctTitle">
<h3><span class="mw-headline" id="Ruota_la_vista_di_90.C2.B0"><a href="https://www.freecadweb.org/wiki/index.php?title=File:Text-x-python.png" class="image"><img alt="Text-x-python.png" src="32px-Text-x-python.png" width="32" height="32" srcset="/wiki/images/2/2c/Text-x-python.png 1.5x" /></a> Ruota la vista di 90°</span></h3>
</td></tr>
<tr>
<th class="ctOdd">Descrizione
</th></tr>
<tr>
<td class="ctEven left">Questa macro ruota la vista corrente di 90° a sinistra. Funziona solo se si è in vista dall'alto
</td></tr>
<tr>
<th class="ctOdd">Autore
</th></tr>
<tr>
<td class="ctEven"><a href="https://www.freecadweb.org/wiki/index.php?title=User:Yorik" title="User:Yorik">Yorik</a>
</td></tr>
<tr>
<th class="ctOdd">Link
</th></tr>
<tr>
<td class="ctEven"><a href="https://www.freecadweb.org/wiki/index.php?title=Macros_recipes/it" title="Macros recipes/it">Esempi di macro</a><br /><a href="https://www.freecadweb.org/wiki/index.php?title=How_to_install_macros/it" title="How to install macros/it">Come installare le Macro</a><br /><a href="https://www.freecadweb.org/wiki/index.php?title=Customize_Toolbars/it" title="Customize Toolbars/it">Personalizzare la barra degli strumenti</a>
</td></tr>
<tr>
<th class="ctOdd">Versione
</th></tr>
<tr>
<td class="ctEven macro-version">01.00
</td></tr>
<tr>
<th class="ctOdd">Data ultima modifica
</th></tr>
<tr>
<td class="ctEven macro-date">2010-11-17
</td></tr>
<tr>
<th class="ctOdd">
</th></tr>
<tr>
<td class="ctToc"><br /><div id="toc" class="toc"><div class="toctitle"><h2>Contents</h2></div>
<ul>
<li class="toclevel-1"><a href="#Ruota_la_vista_di_90.C2.B0"><span class="tocnumber">1</span> <span class="toctext">Ruota la vista di 90°</span></a></li>
<li class="toclevel-1 tocsection-1"><a href="#Descrizione"><span class="tocnumber">2</span> <span class="toctext">Descrizione</span></a></li>
<li class="toclevel-1 tocsection-2"><a href="#Desrizione"><span class="tocnumber">3</span> <span class="toctext">Desrizione</span></a></li>
<li class="toclevel-1 tocsection-3"><a href="#Descrizione_2"><span class="tocnumber">4</span> <span class="toctext">Descrizione</span></a></li>
<li class="toclevel-1 tocsection-4"><a href="#Uso"><span class="tocnumber">5</span> <span class="toctext">Uso</span></a></li>
<li class="toclevel-1 tocsection-5"><a href="#Script"><span class="tocnumber">6</span> <span class="toctext">Script</span></a></li>
</ul>
</div>
</td></tr>
</table>
<p><br />
</p>
<h2><span class="mw-headline" id="Descrizione">Descrizione</span></h2>
<p>Questa macro ruota la vista corrente di 90° a sinistra. Funziona solo se si è in vista dall'alto
<a href="https://www.freecadweb.org/wiki/index.php?title=File:Macro_Rotate_View_view_90_Degrees.png" class="image" title="rotation 90 degrees"><img alt="rotation 90 degrees" src="Macro_Rotate_View_view_90_Degrees.png" width="54" height="58" /></a>
</p><p><br />
</p>
<pre>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 </pre>
<h2><span class="mw-headline" id="Desrizione">Desrizione</span></h2>
<p>Questo codice
</p>
<ol><li> nel modo 1 fornisce la vista assonometrica con Y rivolto verso l'alto <a href="https://www.freecadweb.org/wiki/index.php?title=File:Macro_Rotate_View_with_Y_pointing_upwards_.png" class="image" title="axonometric view with Y pointing upwards"><img alt="axonometric view with Y pointing upwards" src="Macro_Rotate_View_with_Y_pointing_upwards_.png" width="54" height="58" /></a> </li>
<li> nel modo 2 fornisce la vista assonometrica con Z rivolto verso l'alto <a href="https://www.freecadweb.org/wiki/index.php?title=File:Macro_Rotate_View_with_Z_pointing_upwards_.png" class="image" title="axonometric view with Z pointing upwards"><img alt="axonometric view with Z pointing upwards" src="Macro_Rotate_View_with_Z_pointing_upwards_.png" width="54" height="58" /></a></li></ol>
<pre>import math
import pivy
from pivy import coin
Gui.activeDocument().activeView().viewAxonometric()
Gui.SendMsgToActiveView("ViewFit")
cam = Gui.ActiveDocument.ActiveView.getCameraNode()
rot = coin.SbRotation()
rot.setValue(coin.SbVec3f(1,0,0),-math.pi/2) # Y pointing upwards (mode 1)
#rot.setValue(coin.SbVec3f(0,0,1),math.pi/2) # Z pointing upwards (mode 2 uncomment for use)
nrot = cam.orientation.getValue() * rot
cam.orientation = nrot
Gui.SendMsgToActiveView("ViewFit") </pre>
<h2><span class="mw-headline" id="Descrizione_2">Descrizione</span></h2>
<p>Questo codice incollato nella console Python di FreeCAD (o in una macro) consente di ruotare la vista sui 3 assi dell'angolo (in gradi) utile per creare un piano nella posizione desiderata
</p>
<h2><span class="mw-headline" id="Uso">Uso</span></h2>
<p>Incollare il codice nella console Python di FreeCAD e premere <span style="background: #DDDDDD; border: 1px solid #888888; padding: 0px 5px 1px 5px;">Enter</span> &gt; <span style="background: #DDDDDD; border: 1px solid #888888; padding: 0px 5px 1px 5px;">Enter</span>
</p>
<h2><span class="mw-headline" id="Script">Script</span></h2>
<pre>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 " </pre>
<p>esempio da incollare nella console:
</p>
<pre>RotateView(0,1,0,45) </pre>
<p>Se non c'è nessun documento aperto restituisce un errore
</p>
<div style="clear:both"></div>
</div>
</div>
</div><div class="printfooter">
Online version: "<a dir="ltr" href="https://www.freecadweb.org/wiki/index.php?title=Macro_Rotate_View/it&amp;oldid=239799">http://www.freecadweb.org/wiki/index.php?title=Macro_Rotate_View/it&amp;oldid=239799</a>"</div>
<div id="catlinks" class="catlinks" data-mw="interface"></div><div class="visualClear"></div>
</div>
</div>
<div id="mw-navigation">
<h2>Navigation menu</h2>
</body></html>