Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/alicevision/meshroom.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'meshroom/ui/components/scene3D.py')
-rw-r--r--meshroom/ui/components/scene3D.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/meshroom/ui/components/scene3D.py b/meshroom/ui/components/scene3D.py
index b4569c19..aeea75dd 100644
--- a/meshroom/ui/components/scene3D.py
+++ b/meshroom/ui/components/scene3D.py
@@ -245,6 +245,16 @@ class Transformations3DHelper(QObject):
return modelMat
+ @Slot(QVector3D, result=QVector3D)
+ def transformRotationGL(self, rotation):
+ M = QQuaternion.fromAxisAndAngle(QVector3D(1, 0, 0), 180.0)
+
+ quaternion = QQuaternion.fromEulerAngles(rotation)
+
+ U = M * quaternion * M
+
+ return U.toEulerAngles()
+
@Slot(QVector3D, QMatrix4x4, Qt3DRender.QCamera, QSize, result=float)
def computeScaleUnitFromModelMatrix(self, axis, modelMat, camera, windowSize):
""" Compute the length of the screen projected vector axis unit transformed by the model matrix.