From 9df9f47276976d5030519601404f5681e15ebce9 Mon Sep 17 00:00:00 2001 From: Ash Tyndall Date: Fri, 21 Oct 2011 20:38:47 +0800 Subject: [PATCH] --- scene.c | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/scene.c b/scene.c index d351afa..b4b61c5 100644 --- a/scene.c +++ b/scene.c @@ -390,13 +390,12 @@ void display() { SceneObject so = sceneObjs[i]; // Apply rotation vector - //GLfloat* rv = &so.rotation.vector; - printf("%f, %f, %f\n", so.rotation.vector[0], so.rotation.vector[1], so.rotation.vector[2]); - glRotatef(so.rotation.amount, so.rotation.vector[0], so.rotation.vector[1], so.rotation.vector[2]); + GLfloat* rv = so.rotation.vector; + glRotatef(so.rotation.amount, rv[0], rv[1], rv[2]); // Apply scaling vector - //GLfloat* sv = &so.scale; - glScalef(so.scale[0], so.scale[1], so.scale[2]); + GLfloat* sv = so.scale; + glScalef(sv[0], sv[1], sv[2]); // Apply translation vector glTranslatef(so.x, so.y, so.z); -- 2.20.1