diff bayesianArraySrc/DynamicVector.cpp @ 50:93d21c20cfbc

Added Markers and the ability to switch to these points in the file when playing
author Andrew N Robertson <andrew.robertson@eecs.qmul.ac.uk>
date Thu, 14 Jun 2012 20:04:49 +0100
parents eb43b2a007ea
children e359b9bad811
line wrap: on
line diff
--- a/bayesianArraySrc/DynamicVector.cpp	Tue May 22 22:53:44 2012 +0100
+++ b/bayesianArraySrc/DynamicVector.cpp	Thu Jun 14 20:04:49 2012 +0100
@@ -10,6 +10,8 @@
 
 #include "DynamicVector.h"
 
+bool printOutput = false;
+
 DynamicVector::DynamicVector(){
 	length = 0;
 	arraySize = 0;
@@ -381,10 +383,12 @@
 	//some lines where the bounaries are
 	ofLine(window.x + minScreenIndex, window.y + screenHeight, window.x + minScreenIndex, window.y + screenHeight/2);
 	ofLine(window.x + maxScreenIndex, window.y + screenHeight, window.x + maxScreenIndex, window.y + screenHeight/2);
-	string infoString = "max "+ofToString(maxVal);
-	infoString += "\n offset "+ofToString(offset);
-	ofDrawBitmapString(infoString, window.x + window.width/2, window.y + 15);
 	
+	/*
+		string infoString = "max "+ofToString(maxVal);
+		infoString += "\n offset "+ofToString(offset);
+		ofDrawBitmapString(infoString, window.x + window.width/2, window.y + 15);
+	*/
 //	ofDrawBitmapString(ofToString(stepSize, 2)+"  "+ofToString(maxScreenIndex - minScreenIndex, 0), 20, 600);
 
 }