I want make simple 3d viewer, but I have some problem with rotations. I use matrixs for "adding" rotations, and quaternions to "keep" rotations. Someone know what can be wrong ? code :

StartDraging:
            draging = true;
            mX = event->x();
            mY = event->y();
            prevX = mX;
            prevY = mY;

StopDraging: draging = false; cml::vector3f u,v; cml::quaternionf_p dragQ;

    u[0] =( 2.0 * prevX - width())/width();
    u[1] =( -2.0 * prevY + height())/height();
    u[2] = 0;
    float l1 = u.length();
    l1 = (l1 < 1)?l1:1.0f;
    u[2] =(float)sqrt( 1.001f- l1*l1);
    u.normalize();


    v[0] =( 2.0 * mX - width())/width();
    v[1] =( -2.0 * mY + height())/height();
    v[2] = 0;
    float l2 = v.length();
    l2 = (l2 < 1)?l2:1.0f;
    v[2] =(float)sqrt( 1.001f- l2*l2);
    v.normalize();
    cml::vector3f rotAxis;
    float rot_angle = (v-u).length()*40.1f;
    rotAxis = cml::cross(u,v);
    rotAxis.normalize();

    dragQ[0]=rot_angle;
    dragQ[1]=rotAxis[0];
    dragQ[2]=rotAxis[1];
    dragQ[3]=rotAxis[2];

//code above work good

    cml::matrix44f_c dragMatrix,qMatrix,result;
    cml::quaternionf_p resultQ;

    cml::matrix_rotation_quaternion(dragMatrix,dragQ);
    cml::matrix_rotation_quaternion(qMatrix,q);
    result = qMatrix * dragMatrix;
    cml::quaternion_rotation_matrix(q,result);

Drawing: cml::vector3f u,v; cml::quaternionf_p dragQ; dragQ.identity(); if(draging == true) {

    u[0] =( 2.0 * prevX - width())/width();
    u[1] =( -2.0 * prevY + height())/height();
    u[2] = 0;
    float l1 = u.length();
    l1 = (l1 < 1)?l1:1.0f;
    u[2] =(float)sqrt( 1.001f- l1*l1);
    u.normalize();


    v[0] =( 2.0 * mX - width())/width();
    v[1] =( -2.0 * mY + height())/height();
    v[2] = 0;
    float l2 = v.length();
    l2 = (l2 < 1)?l2:1.0f;
    v[2] =(float)sqrt( 1.001f- l2*l2);
    v.normalize();
    cml::vector3f rotAxis;
    float rot_angle = (v-u).length()*40.1f;
    rotAxis = cml::cross(u,v);
    rotAxis.normalize();

    dragQ[0]=rot_angle;
    dragQ[1]=rotAxis[0];
    dragQ[2]=rotAxis[1];
    dragQ[3]=rotAxis[2];


      }
//code above work good

glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
glClearColor(0.0,0.3,0.3,1);

glMatrixMode(GL_MODELVIEW);
glLoadIdentity();

glLoadIdentity(); glTranslatef(0, 0, -zoom); glPushMatrix();

cml::matrix44f_c dragMatrix,qMatrix,result; cml::quaternionf_p resultQ;

dragMatrix.identity(); cml::matrix_rotation_quaternion(dragMatrix,dragQ); cml::matrix_rotation_quaternion(qMatrix,q); result = qMatrix * dragMatrix; cml::quaternion_rotation_matrix(resultQ,result);

glMultMatrixf(result.data());

if(scene!=0)
{

    scene->Draw(textures);

}
glPopMatrix();
link|improve this question
You haven't told us what the problem with the rotations is, and you need to reformat your code sample - it's very difficult to read. – cbamber85 Jul 22 '11 at 20:17
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.