diff src/melodyTriangle.cpp @ 19:055d7524bae4

Adjusted colours, reduced buffer zone.
author samer
date Tue, 31 Jan 2012 23:44:01 +0000
parents 9a414ea6880d
children 4dcc4312b5fa
line wrap: on
line diff
--- a/src/melodyTriangle.cpp	Tue Jan 31 15:49:40 2012 +0000
+++ b/src/melodyTriangle.cpp	Tue Jan 31 23:44:01 2012 +0000
@@ -1,7 +1,7 @@
 #include "melodyTriangle.h"
 #include <GLUT/GLUT.h> 
 
-#define BUFFER_ZONE 64 // have to drag this far to snap out of triange.
+#define BUFFER_ZONE 50 // have to drag this far to snap out of triange.
 /*
  /birth id
  /death id
@@ -282,7 +282,7 @@
 
 	//let's draw our triangle
 	ofSetLineWidth(2);
-	ofSetColor(96,96,96);
+	ofSetColor(80,80,80);
 	ofFill();		
 	ofTriangle(x1, y1, x2, y2, x3, y3);
 	if (constrained) ofSetColor(255,96,96);