class DrillBlock { DrillPt[] points = new DrillPt[25]; int value; int numpoints; boolean transpose; DrillBlock() { this.points = new DrillPt[25]; for(int i=0; i<10; i++) { this.points[i] = new DrillPt(); this.points[i].set(0.0,0.0); } this.numpoints=0; this.value=-1; this.transpose=false; } DrillBlock(int _val) { this.points = new DrillPt[25]; for(int i=0; i<10; i++) this.points[i].set(0.0,0.0); this.numpoints=0; this.set(_val); this.transpose=false; } void set(int _val) { this.value = (int)map(_val, 0, 255, 5, 0); this.numpoints=this.value; //println(_val+" "+this.value); /*for(int i=0; i