287 lines
9.8 KiB
HTML
287 lines
9.8 KiB
HTML
<html><head><title>Macro View Rotation/fr</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 View Rotation/fr</h1></div>
|
|
|
|
<div id="mw-content-text" lang="fr" 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="View_Rotation"><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> View Rotation</span></h3>
|
|
</td></tr>
|
|
<tr>
|
|
<th class="ctOdd">Description
|
|
</th></tr>
|
|
<tr>
|
|
<td class="ctEven left">Cette macro fournit une interface graphique, afin de permettre une rotation précise des objets dans la vue.
|
|
</td></tr>
|
|
<tr>
|
|
<th class="ctOdd">Auteur
|
|
</th></tr>
|
|
<tr>
|
|
<td class="ctEven"><a href="https://www.freecadweb.org/wiki/index.php?title=User:Joe_Dowsett&action=edit&redlink=1" class="new" title="User:Joe Dowsett (page does not exist)">Joe Dowsett</a>
|
|
</td></tr>
|
|
<tr>
|
|
<th class="ctOdd">Liens
|
|
</th></tr>
|
|
<tr>
|
|
<td class="ctEven"><a href="https://www.freecadweb.org/wiki/index.php?title=Macros_recipes/fr" title="Macros recipes/fr">Recettes macros</a><br /><a href="https://www.freecadweb.org/wiki/index.php?title=How_to_install_macros/fr" title="How to install macros/fr">Comment installer une macro</a><br /><a href="https://www.freecadweb.org/wiki/index.php?title=Customize_Toolbars/fr" title="Customize Toolbars/fr">Comment ajouter une barre d'outils</a>
|
|
</td></tr>
|
|
<tr>
|
|
<th class="ctOdd">Version
|
|
</th></tr>
|
|
<tr>
|
|
<td class="ctEven macro-version">1.0
|
|
</td></tr>
|
|
<tr>
|
|
<th class="ctOdd">Date dernière modification
|
|
</th></tr>
|
|
<tr>
|
|
<td class="ctEven macro-date">2012-01-04
|
|
</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="#View_Rotation"><span class="tocnumber">1</span> <span class="toctext">View Rotation</span></a></li>
|
|
<li class="toclevel-1 tocsection-1"><a href="#Discussion_page"><span class="tocnumber">2</span> <span class="toctext">Discussion page</span></a></li>
|
|
</ul>
|
|
</div>
|
|
|
|
</td></tr>
|
|
</table>
|
|
<p><br />
|
|
</p><p>Cette interface graphique permet de faire pivoter la vue avec plus de précision qu'avec l'utilisation de la souris. La rotation se fait selon un des axes fixes par rapport à l'utilisateur, et non par rapport aux objets, l'objectif est de faire tourner les objets approximativement autour de leurs centres communs plutôt que le centre de la vue.
|
|
</p><p>Les valeurs par défaut positionnent la boîte de dialogue en haut et à droite de l'écran, cet emplacement peut être changé en modifiant les valeurs ci dessous,
|
|
</p><p><br />
|
|
</p>
|
|
<div class="floatleft"><a href="https://www.freecadweb.org/wiki/index.php?title=File:Macro_View_Rotation_00.png" class="image" title="Rotate view"><img alt="Rotate view" src="480px-Macro_View_Rotation_00.png" width="480" height="410" srcset="/wiki/images/6/63/Macro_View_Rotation_00.png 1.5x" /></a></div>
|
|
<div style="clear:both"></div>
|
|
<pre>a = QtGui.QDesktopWidget()
|
|
right = a.availableGeometry().width()
|
|
|
|
self.setGeometry(right-300, 0, 300, 150) </pre>
|
|
<p><br />
|
|
à la fin de la fonction <b>initUI</b>.
|
|
</p><p>Les deux premiers arguments, (<b>droit-300, 0</b>) fournissent la position du coin supérieur gauche de la fenêtre - mon expérience est, que le comportement a été, comme prévu sur Ubuntu, mais Vista positionne la fenêtre trop haut et, le <b>0</b> doit être changé à <b>~ 30</b>.
|
|
</p><p>Trois icônes sont appelés à symboliser le sens de rotation. Un fichier zip contenant ces icônes peut être trouvé <a rel="nofollow" class="external text" href="http://forum.freecadweb.org/download/file.php?id=453">ici</a> , les images doivent être placées dans le dossier contenant vos macros.
|
|
</p><p>S'il vous plaît n'hésitez pas à contribuer pour en faire de meilleurs !
|
|
</p><p><br />
|
|
</p>
|
|
<pre>import PySide
|
|
from PySide import QtGui, QtCore
|
|
from pivy import coin
|
|
from math import pi
|
|
|
|
|
|
def find_centre():
|
|
xmax = xmin = ymax = ymin = zmax = zmin = 0
|
|
for obj in App.ActiveDocument.Objects:
|
|
if obj.TypeId[:4] == "Mesh":
|
|
box = obj.Mesh.BoundBox
|
|
elif obj.TypeId[:6] == "Points":
|
|
box = obj.Points.BoundBox
|
|
elif obj.TypeId[:4] == "Part":
|
|
box = obj.Shape.BoundBox
|
|
else:
|
|
continue
|
|
xmax = max(xmax, box.XMax)
|
|
xmin = min(xmin, box.XMin)
|
|
ymax = max(ymax, box.YMax)
|
|
ymin = min(ymin, box.YMin)
|
|
zmax = max(zmax, box.ZMax)
|
|
zmin = min(zmin, box.ZMin)
|
|
|
|
centre = FreeCAD.Vector((xmax+xmin)/2.0, (ymax+ymin)/2.0, (zmax+zmin)/2.0)
|
|
return centre
|
|
|
|
|
|
|
|
class rotate_gui(QtGui.QWidget):
|
|
def __init__(self):
|
|
super(rotate_gui, self).__init__()
|
|
self.initUI()
|
|
self.initRotate()
|
|
|
|
|
|
def initUI(self):
|
|
self.sld = [0,1,2]
|
|
self.tbox = [0,1,2]
|
|
path = FreeCAD.ConfigGet("UserAppData")
|
|
icon = [0,1,2]
|
|
icons = ('right.png', 'up.png', 'out.png')
|
|
|
|
for i in range(3):
|
|
self.sld[i] = QtGui.QSlider(QtCore.Qt.Horizontal, self)
|
|
self.sld[i].setFocusPolicy(QtCore.Qt.NoFocus)
|
|
self.sld[i].setSingleStep(5)
|
|
self.sld[i].setPageStep(15)
|
|
self.sld[i].setValue(0)
|
|
self.sld[i].setMaximum(180)
|
|
self.sld[i].setMinimum(-180)
|
|
self.tbox[i] = QtGui.QLineEdit(self)
|
|
self.tbox[i].setText("0")
|
|
self.tbox[i].setAlignment(QtCore.Qt.AlignRight)
|
|
icon[i] = QtGui.QLabel(self)
|
|
icon[i].setPixmap(QtGui.QPixmap(path + icons[i]))
|
|
self.sld[i].valueChanged[int].connect(self.valueChange)
|
|
self.tbox[i].returnPressed.connect(self.valueEntered)
|
|
|
|
resetButton = QtGui.QPushButton("Reset")
|
|
resetButton.clicked.connect(self.reset)
|
|
|
|
okButton = QtGui.QPushButton("OK")
|
|
okButton.clicked.connect(self.close)
|
|
|
|
cancelButton = QtGui.QPushButton("Cancel")
|
|
cancelButton.clicked.connect(self.cancel)
|
|
|
|
hbox = [0,1,2,3]
|
|
vbox = QtGui.QVBoxLayout()
|
|
|
|
for i in range(3):
|
|
hbox[i] = QtGui.QHBoxLayout()
|
|
hbox[i].addWidget(icon[i],1, QtCore.Qt.AlignCenter)
|
|
hbox[i].addWidget(self.sld[i],4)
|
|
hbox[i].addWidget(self.tbox[i],1)
|
|
vbox.addLayout(hbox[i])
|
|
|
|
hbox[3] = QtGui.QHBoxLayout()
|
|
hbox[3].addWidget(resetButton,1)
|
|
hbox[3].addWidget(okButton,1)
|
|
hbox[3].addWidget(cancelButton,1)
|
|
vbox.addStretch(1)
|
|
vbox.addLayout(hbox[3])
|
|
|
|
self.setLayout(vbox)
|
|
|
|
a = QtGui.QDesktopWidget()
|
|
right = a.availableGeometry().width()
|
|
|
|
self.setGeometry(right-300, 0, 300, 150)
|
|
self.setWindowTitle('Rotate view...')
|
|
self.show()
|
|
|
|
|
|
def initRotate(self):
|
|
self.internal = False
|
|
self.current = 0
|
|
|
|
self.cam = Gui.ActiveDocument.ActiveView.getCameraNode()
|
|
self.centre = coin.SbVec3f(find_centre())
|
|
self.view = self.cam.orientation.getValue()
|
|
self.pos = self.cam.position.getValue()
|
|
|
|
#store a copy of the original view to be restored in the case of user selecting Reset or Cancel
|
|
self.original_view = coin.SbRotation(self.view.getValue())
|
|
self.original_pos = coin.SbVec3f(self.pos.getValue())
|
|
|
|
self.config_direction(0)
|
|
|
|
|
|
def reset(self):
|
|
#reset the view to the original one
|
|
self.cam.orientation = self.original_view
|
|
self.cam.position = self.original_pos
|
|
self.internal = True
|
|
for sld in self.sld:
|
|
sld.setValue(0)
|
|
self.internal = False
|
|
for tbox in self.tbox:
|
|
tbox.setText("0")
|
|
self.config_direction(0)
|
|
|
|
|
|
def cancel(self):
|
|
self.reset()
|
|
self.close()
|
|
|
|
|
|
def config_direction(self, i):
|
|
#evaluate the vectors corresponding to the three directions for the current view, and assign the i-th one to self.direction
|
|
self.view = self.cam.orientation.getValue()
|
|
self.view = coin.SbRotation(self.view.getValue())
|
|
self.pos = self.cam.position.getValue()
|
|
self.pos = coin.SbVec3f(self.pos.getValue())
|
|
|
|
up = coin.SbVec3f(0,1,0)
|
|
self.up = self.view.multVec(up)
|
|
out = coin.SbVec3f(0,0,1)
|
|
self.out = self.view.multVec(out)
|
|
u = self.up.getValue()
|
|
o = self.out.getValue()
|
|
r = (u[1]*o[2]-u[2]*o[1], u[2]*o[0]-u[0]*o[2], u[0]*o[1]-u[1]*o[0])
|
|
self.right = coin.SbVec3f(r)
|
|
|
|
self.direction = [self.right, self.up, self.out][i]
|
|
|
|
def check(self, i):
|
|
#check if the direction of rotation has changed, if so then set previous slider & textbox to zero, and setup the new direction
|
|
if i <> self.current:
|
|
self.internal = True
|
|
self.sld[self.current].setValue(0)
|
|
self.tbox[self.current].setText("0")
|
|
self.internal = False
|
|
self.current = i
|
|
self.config_direction(i)
|
|
|
|
|
|
def rotate(self, value):
|
|
#carry out the desired rotation about self.direction
|
|
val = value*pi/180.0
|
|
rot = coin.SbRotation(self.direction, -val)
|
|
nrot = self.view*rot
|
|
prot = rot.multVec(self.pos - self.centre) + self.centre
|
|
self.cam.orientation = nrot
|
|
self.cam.position = prot
|
|
|
|
|
|
def valueChange(self, value):
|
|
#respond to the change in value of a slider, update the corresponding text box, check for a direction change then rotate
|
|
#if the value was changed internally, ignore event.
|
|
if self.internal:
|
|
return
|
|
|
|
sender = self.sender()
|
|
for i in range(3):
|
|
if sender == self.sld[i]:
|
|
break
|
|
self.tbox[i].setText(str(value))
|
|
self.check(i)
|
|
self.rotate(value)
|
|
|
|
|
|
def valueEntered(self):
|
|
#respond to a value being entered in a text box, updating the corresponding slider, check for direction change then rotate
|
|
sender = self.sender()
|
|
for i in range(3):
|
|
if sender == self.tbox[i]:
|
|
break
|
|
value = int(self.tbox[i].text())
|
|
self.internal = True
|
|
self.sld[i].setValue(value)
|
|
self.internal = False
|
|
self.check(i)
|
|
self.rotate(value)
|
|
|
|
|
|
rotate = rotate_gui() </pre>
|
|
<div style="clear:both"></div>
|
|
<p><br />
|
|
</p>
|
|
<h2><span class="mw-headline" id="Discussion_page">Discussion page</span></h2>
|
|
<p><a rel="nofollow" class="external text" href="http://forum.freecadweb.org/viewtopic.php?f=3&t=1784&hilit=View+Rotation#p12012">View+Rotation</a>
|
|
</p>
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</div><div class="printfooter">
|
|
Online version: "<a dir="ltr" href="https://www.freecadweb.org/wiki/index.php?title=Macro_View_Rotation/fr&oldid=239811">http://www.freecadweb.org/wiki/index.php?title=Macro_View_Rotation/fr&oldid=239811</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> |