Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fixed stroke weight glitch.
  • Loading branch information
Andrew Lawson authored and Andrew Lawson committed Nov 29, 2014
1 parent 39fcb31 commit 670e0fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion geometric_separators.pde
Expand Up @@ -77,7 +77,7 @@ void draw() {
text("Reset.", reset_x + 25, reset_y - 10);
text("Calculate.", calc_x + 25, calc_y - 10);
for (PVector point : input) {
point(point.x, point.y);
strokeWeight(4);
point(point.x, point.y);
}
}

0 comments on commit 670e0fc

Please sign in to comment.