(no commit message)
[atyndall/cits2231.git] / helper.c
index d7c6291..460c44a 100644 (file)
--- a/helper.c
+++ b/helper.c
@@ -254,16 +254,17 @@ void drawFloor() {
 /**
  * Draw x, z axis on floor
  */
-void drawLine() {
+void drawAxisLines() {
   // **NOTE: Function does not currently draw arrow-heads
 
   glDisable(GL_TEXTURE_2D);
   glDisable(GL_LIGHTING);
   glEnable(GL_BLEND);
   glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
+  glEnable(GL_LINE_SMOOTH);
   glColor3f( 0.0, 0.0, 0.0 );
 
-  float arrowLength = 0.5;
+  float arrowLength = 1.0;
 
   glBegin(GL_LINES);
     // x arrow
@@ -272,7 +273,7 @@ void drawLine() {
     
     // x arrowheads
     glVertex3i(  lineLength, 0.0, 0.0 );
-    glVertex3i(  lineLength - arrowLength, 0.0,  0.9 );
+    glVertex3i(  lineLength - arrowLength, 0.0,  1.0 );
 
     glVertex3i(  lineLength, 0.0, 0.0 );
     glVertex3i(  lineLength - arrowLength, 0.0, -1.0 );

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