Skip to content

Commit

Permalink
Boogie modified to allow for larger color boxes
Browse files Browse the repository at this point in the history
  • Loading branch information
TBTusk committed Dec 9, 2010
1 parent 8d3dae3 commit a38f01f
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions boogie.pde
Original file line number Diff line number Diff line change
Expand Up @@ -98,10 +98,10 @@ void illus() {
// this box in
int max_si = max_s;

//if (max_s > 6) {
if (max_s > 10) {
// don't want ridiculously wide boxes
// max_s = int(max_s/2);
//}
max_s = int(max_s/2);
}

// modifying max_s to change with the thickness the user prefers
max_s = int((thickness*max_s)/2);
Expand Down Expand Up @@ -134,10 +134,10 @@ void illus() {
// and max_si refers to the total available white space
int max_si = max_s;

//if (max_s > 5) {
if (max_s > 8) {
// don't want ridiculously wide boxes
// max_s = int(max_s/2);
//}
max_s = int(max_s/2);
}

// modifying max_s to change with the thickness the user prefers
max_s = int((thickness*max_s)/2);
Expand Down

0 comments on commit a38f01f

Please sign in to comment.