Tagged Questions
An arcball is a way of making a 3d object interactive, by mapping 2d input coordinates into a 3d vector.
4
votes
2answers
2k views
How to rotate about the center of screen using quaternions in opengl?
I am trying implement arcball/trackball rotation but I have a problem with the center of
rotation. I want the center to be the center of my screen no matter what.
Let me explain what I have done so ...
2
votes
4answers
955 views
Arcball Implementation for Papervision3D
Is there an arcball implementation for Papervision3D?
There are many arcball implementations for Flash/ActionScript but none specifically for Papervision3D.
Here's an example of an arcball ...
1
vote
0answers
271 views
Getting correct screen mappings for arcball in opengl
I am trying to implement an arcball interface and it seems that after rotation of 90 degrees the model stops rotating in that specific direction, I suspect that there is a problem with mapping clicks ...
1
vote
1answer
265 views
Arcball Rotation at 90 degrees
I have successfully implemented Arcball rotation through quaternions, but am confused at what to do when the direction vector of the camera is parallel to up vector. Currently I am just restricting ...
0
votes
1answer
32 views
How to change the center of the trackball in its regular implementation?
I have successfully implemented a trackball in java using the below two tutorials:
http://nehe.gamedev.net/tutorial/arcball_rotation/19003
...
0
votes
0answers
97 views
Help fixing ArcBall code
In an attempt to understand how to implement the arcball technique I am trying to port an existing Processing code to OpenFrameworks, this is what I have
void testApp::draw(){
ofPushMatrix();
...
0
votes
2answers
375 views
OpenGL ES arcball transformation problem
I've ported the arcball classes I've been using from vb.net to the iPhone using objective C++, but now I'm having a problem. When I rotate my object, everything is fine. As soon as I pan the view, my ...