(no commit message)
authorAsh Tyndall <[email protected]>
Thu, 20 Oct 2011 12:17:30 +0000 (20:17 +0800)
committerAsh Tyndall <[email protected]>
Thu, 20 Oct 2011 12:17:30 +0000 (20:17 +0800)
globals.c
globals.h
helper.c

index 91fb87b..22e33eb 100644 (file)
--- a/globals.c
+++ b/globals.c
@@ -75,6 +75,9 @@ int floorSize = 200;
 /* Current camera x, y, z coords */
 GLfloat camx = 0.0, camy = 0.0, camz = 0.0, rot = 0.0;
 
+/* Length of axis lines */
+GLfloat lineLength = 100;
+
 /* Light 0 parameters */
 GLfloat diffuse0[] = {1.0, 1.0, 1.0, 1.0};
 GLfloat ambient0[] = {0.0, 0.0, 0.0, 1.0};
index 728bf6a..71a21c2 100644 (file)
--- a/globals.h
+++ b/globals.h
@@ -65,6 +65,9 @@ extern int floorSize;
 /* Current camera position */
 extern GLfloat camx, camy, camz, rot;
 
+/* Length of axis lines */
+extern GLfloat lineLength;
+
 /* Light 0 parameters */
 extern GLfloat diffuse0[];
 extern GLfloat ambient0[];
index d685e51..e5d9c0b 100644 (file)
--- a/helper.c
+++ b/helper.c
@@ -262,8 +262,13 @@ void drawLine() {
     glColor4ub( 0.0, 0.0, 0.0, 0.5 );
 
     glBegin(GL_LINES);
-    glVertex3i( 10.0, 0.1, 10.0);
-    glVertex3i( -10.0, 0.1, -10.0);
+    glVertex3i(  lineLength, 1.0, 0.0 );
+    glVertex3i( -lineLength, 1.0, 0.0 );
+    glEnd();
+
+    glBegin(GL_LINES);
+    glVertex3i( 0.0, 1.0,  lineLength );
+    glVertex3i( 0.0, 1.0, -lineLength );
     glEnd();
 
     glDisable(GL_BLEND);

UCC git Repository :: git.ucc.asn.au