Skip to content
Snippets Groups Projects
Commit 8e777f15 authored by Sandro Weber's avatar Sandro Weber
Browse files

[nostory] this case of rotation change causes errors

Change-Id: I37439bd9fd148ed45511d80584e97ca17e1673db
parent 49570938
No related branches found
No related tags found
No related merge requests found
......@@ -1022,6 +1022,9 @@ GZ3D.Manipulator = function(camera, mobile, domElement, doc)
}
else if(scope.selected === 'RXYZE')
{
// commented out for now since it throws an error message at quaternionE.setFromEuler('not a THREE.Euler')
// and has unexpected results when actually followed through with a THREE.Euler passed to setFromEuler()
/*
quaternionE.setFromEuler(point.clone().cross(tempVector).normalize()); // has this ever worked?
tempQuaternion.setFromRotationMatrix(tempMatrix.getInverse(parentRotationMatrix));
......@@ -1032,6 +1035,7 @@ GZ3D.Manipulator = function(camera, mobile, domElement, doc)
tempQuaternion.multiplyQuaternions(tempQuaternion, quaternionXYZ);
scope.object.quaternion.copy(tempQuaternion);
*/
}
else
{
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment