Skip to content

Commit bfe7bda

Browse files
authored
Merge pull request #561 from joshi1983/patch-1
Fixed semicolon in TWO_PI.pde
2 parents 5d4bbf1 + c87c41c commit bfe7bda

File tree

1 file changed

+1
-1
lines changed
  • content/references/examples/processing/TWO_PI

1 file changed

+1
-1
lines changed

content/references/examples/processing/TWO_PI/TWO_PI.pde

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
float x = width/2;
22
float y = height/2;
33
float d = width * 0.8;
4-
size(400,400)
4+
size(400,400);
55
arc(x, y, d, d, 0, QUARTER_PI);
66
arc(x, y, d-80, d-80, 0, HALF_PI);
77
arc(x, y, d-160, d-160, 0, PI);

0 commit comments

Comments
 (0)