From 2931dc8f8168076f7cceed66414ad44969bf9e4b Mon Sep 17 00:00:00 2001 From: Ash Tyndall Date: Fri, 21 Oct 2011 20:40:41 +0800 Subject: [PATCH] --- scene.c | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/scene.c b/scene.c index b4b61c5..0251439 100644 --- a/scene.c +++ b/scene.c @@ -390,15 +390,13 @@ void display() { SceneObject so = sceneObjs[i]; // Apply rotation vector - GLfloat* rv = so.rotation.vector; - glRotatef(so.rotation.amount, rv[0], rv[1], rv[2]); + //glRotatef(so.rotation.amount, so.rotation.vector[0], so.rotation.vector[1], so.rotation.vector[2]); // Apply scaling vector - GLfloat* sv = so.scale; - glScalef(sv[0], sv[1], sv[2]); + glScalef(so.scale[0], so.scale[1], so.scale[2]); // Apply translation vector - glTranslatef(so.x, so.y, so.z); + //glTranslatef(so.x, so.y, so.z); // Apply texture if ( so.texture > 0 ) { -- 2.20.1