You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
What steps will reproduce the problem?
1. How should i disable the Z axis rotation?
2. I need Rotate the object in Left-Right, Right-Left direction only.
3. Disable The Bottom-Top, Top-Bottom Direction of Rotation
What is the expected output? What do you see instead?
What version of the product are you using? On what operating system?
Please provide any additional information below.
Original issue reported on code.google.com by [email protected] on 13 Jun 2013 at 6:32
The text was updated successfully, but these errors were encountered:
The most convenient way to implement this is slightly modifying the mouse
control code, just discarding the x-axis rotations.
Goto definition of viewer's mouseMoveHandler method, comment this line(605):
this.rotMatrix.rotateAboutXAxis(rotX);
Then goto touchMoveHandler method, comment this line(682):
this.rotMatrix.rotateAboutXAxis(rotX);
And it will be ok.
Original issue reported on code.google.com by
[email protected]
on 13 Jun 2013 at 6:32The text was updated successfully, but these errors were encountered: