In my C++ program, I am using a custom Camera class, which internally uses gluLookAt to move the "camera". This has worked fairly well, but I recently hit a bit of a snag: Any gluQuadric object (those drawn with gluSphere, gluCylinder, gluDisk, etc.) aren't properly moving. Instead, they stay locked in the same position.

I know that I am calling gluLookAt prior to rendering these quadrics. I know that the only explanation is that it's related to the quadrics, because any number of standard polygons (i.e. those inside glBegin and glEnd) will properly move, and any quadrics drawn at any point in a frame will not.

Some samples from my code:

//Called automatically every frame by wxWidgets
void wxSFMLCanvas::OnPaint(wxPaintEvent& WXUNUSED(event)) {
    wxPaintDC dc(this);

    Update();

    Display();
}

//Main rendering function.
void wxSFMLCanvas::Update() {
    // Clear the window with current clearing color
    glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);

    glMatrixMode(GL_MODELVIEW);
    glLoadIdentity();

    if (World::getInstance())
        World::getInstance()->render();

    glFlush();
}

//Called by wxSFMLCanvas::Update()
void World::render() {
    mInstance->ActiveCamera->render(); //Only render the active Camera

    renderChildren();
}

//First function called from World::render(); uses gluLookAt to move the GL "camera"
void Camera::render() {

    glMatrixMode(GL_MODELVIEW);
    glLoadIdentity();
    gluLookAt(Position.data[0], Position.data[1], Position.data[2], Focus.data[0], Focus.data[1], Focus.data[2], 0.0f, 1.0f, 0.0f);

    //renderChildren();
}

//Object is superclass of Camera, Light, Model, etc;
//renderChildren() renders all objects in the object hierarchy recursively
void Object::renderChildren() {
    for (unsigned int i = 0; i < children.size(); i++) {
        Object* o = children.at(i);
        std::string cn = std::string(o->ClassName);

        if (cn == "Model") {
            Model::findModel(o->id)->render();
        } else if (cn == "Light") {
            Light::findLight(o->id)->render();
        } else if (cn == "Camera") {
            //Camera::findCamera(o->id)->render();
        }
    }
}

//Renders a custom model; default shape is shown by comments
void Model::render() {

    glTranslatef(Position.data[0], Position.data[1], Position.data[2]); //[0, 0, -80]

    glRotatef(Rotation.data[0], 1.0f, 0.0f, 0.0f); //30 degrees
    glRotatef(Rotation.data[1], 0.0f, 1.0f, 0.0f); //30 degrees
    glRotatef(Rotation.data[2], 0.0f, 0.0f, 1.0f); //0 degrees

    glScalef(Scale.data[0], Scale.data[1], Scale.data[2]); //[1, 1, 1]

    //Draws a green (0, 255, 0, 255) cube, 20x20x20, centred at [0, 0, -80] (Position)
    glBegin(GL_QUADS);
    for (unsigned int i = 0; i < points.size(); i++) {
        Point p = points.at(i);
        glColor3d(p.col.data[0], p.col.data[1], p.col.data[2]);
        glVertex3d(p.pos.data[0], p.pos.data[1], p.pos.data[2]);
    }
    glEnd();

    //Testing code, to ensure it's not a problem with Light::render()
    GLUquadricObj* pTess = gluNewQuadric();
    gluQuadricDrawStyle(pTess, GLU_FILL);
    gluQuadricNormals(pTess, GLU_SMOOTH);
    glLoadIdentity();
    glTranslatef(Position.data[0], Position.data[1] - 20.f, Position.data[2]);
    glColor3f(1.f, 0.f, 0.f);
    gluDisk(pTess, 0.f, 10.f, 16, 16);

    renderChildren();
}

//Renders GL lights, as well as quadrics to visualise them
void Light::render() {
    glLoadIdentity();

    //Light-related stuff

    glColor3f(1.f, 1.f, 0.f);

    GLUquadricObj* pTess = gluNewQuadric();
    gluQuadricDrawStyle(pTess, GLU_FILL);
    gluQuadricNormals(pTess, GLU_SMOOTH);
    if (LightType == Enum::LT_TYPE_SPOTLIGHT) {
        glLoadIdentity();
        glTranslatef(Position.data[0], Position.data[1], Position.data[2]);
        glRotatef(270.f, 1, 0, 0);
        gluCylinder(pTess, 15*tan(rad(Angle)), 0, 15, 16, 16);
    } else if (LightType == Enum::LT_TYPE_POSITIONAL) {
        glLoadIdentity();
        glTranslatef(Position.data[0], Position.data[1], Position.data[2]);
        gluSphere(pTess, 15.f, 16, 16);
    }

    renderChildren();
}

If any more code is relevant, I'll post it.

Some screenshots to show what I'm talking about:

Camera in its default position (0, 0, 0) looking down the Z-axis

Camera at position (40, 0, -30) looking down the local Z-axis

Notice how the disk and cone don't move with the cube?

link|improve this question
1  
At the very least show us some relevant code. Don't wait. Ideally something minimal which we can try ourselves and which exhibits the behaviour you describe. That should not be too hard to do. And just to clarify, are you saying that when moving the camera, the gluQuadric objects move with the camera? – Bart Nov 24 '11 at 9:56
No. Although objects drawn with glBegin/glEnd do properly move around as if the virtual camera is looking elsewhere, the gluQuadric objects are staying in the same exact place on the screen as if the camera was still in its default location... – drummerp Nov 24 '11 at 17:49
As said before, show us some code. It's going to be hard to guess what's wrong. – Bart Nov 24 '11 at 17:52
It's in the first post now. – drummerp Nov 24 '11 at 18:05
feedback

closed as not a real question by Anders K, VMAtm, AVD, beryllium, Justin Ethier Nov 25 '11 at 3:37

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. See the FAQ for guidance on how to improve it.

Browse other questions tagged or ask your own question.