chiahsien / iphonewavefrontloader

Automatically exported from code.google.com/p/iphonewavefrontloader
1 stars 0 forks source link

Incorrect values are passed to glRotatef in drawSelf - OpenGLWaveFrontObject.m #2

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
Excuse me for violating the template, but line #276 in
OpenGLWaveFrontObject.m appears incorrect. It reads:

glRotatef(currentPosition.z, 0.0, 0.0, 1.0);

it should read:

glRotatef(currentRotation.z, 0.0, 0.0, 1.0);

Original issue reported on code.google.com by greensamuelm on 27 Apr 2009 at 12:31