From 47f587200c6be35f945d40d837a50d3c415c8588 Mon Sep 17 00:00:00 2001 From: Ash Tyndall Date: Fri, 21 Oct 2011 20:43:16 +0800 Subject: [PATCH] --- scene.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scene.c b/scene.c index 0251439..77d2c10 100644 --- a/scene.c +++ b/scene.c @@ -390,13 +390,13 @@ void display() { SceneObject so = sceneObjs[i]; // Apply rotation vector - //glRotatef(so.rotation.amount, 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]); // Apply scaling vector 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