mirror of
https://github.com/dyne/FreeJ.git
synced 2026-02-06 21:10:06 +01:00
processing-js 0.4 has been merged in some relevant parts basic and topic scripts added for test color handling fixed, more scripts show up now
10 lines
178 B
Plaintext
10 lines
178 B
Plaintext
size(200, 200);
|
|
background(0);
|
|
stroke(255);
|
|
noFill();
|
|
smooth();
|
|
|
|
for(int i = 0; i < 100; i += 20) {
|
|
bezier(90-(i/2.0), 20+i, 210, 10, 220, 150, 120-(i/8.0), 150+(i/4.0));
|
|
}
|