I've been working on developing a 3D model viewer app for Android (partially for a class, partially to start learning OpenGL). I've made a good bit of progress, but I ran into a bit of an issue recently.

Before drawing the imported 3D model (loaded from an obj file) I find the max/min vertex values, and use them to scale down the model to fit into the view (I also translate the model to be centered at the origin). This all seems to work perfectly, until I enable lighting.

Models that do not require much (or any) scaling are lit exactly as I would expect them to be. Unfortunately, I've been getting some strange results with my scaled models.

To properly demonstrate this, I'm providing an image with 4 separate renders - the top two renders are of a model that required to be scaled down, and the bottom two renders are of the same model, but pre-scaled down in Blender. The left 2 renders show lighting enabled, and the right two show lighting disabled.

Link to image

Also, as a note, I've set gl.glEnable(GL10.GL_RESCALE_NORMAL); in my onSurfaceCreated() method.

The following code is from my onDrawFrame() method.

handleLighting(gl); //Draw light

gl.glTranslatef(0.0f, 0.0f, -4.0f); //Translate the model in to the screen

if(extrema != 0.0f) //Prevent division by zero
{
    gl.glScalef(1.0f / extrema, 1.0f / extrema, 1.0f / extrema); //Scale the model to fit on screen
}

gl.glRotatef(yrot, 1.0f, 0.0f, 0.0f);   //Rotate based off of user input
gl.glRotatef(xrot, 0.0f, 1.0f, 0.0f);   //

gl.glTranslatef(-center[0], -center[1], -center[2]);    //Translate the model into the view
gl.glScalef(zoom, zoom, zoom);          //Scale the model based off of user input

theModel.draw(gl); //Draw model

Thanks!

link|improve this question

50% accept rate
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.