mirror of
https://github.com/dyne/FreeJ.git
synced 2026-02-05 20:49:15 +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
17 lines
209 B
Plaintext
17 lines
209 B
Plaintext
size(200, 200);
|
|
background(0);
|
|
stroke(153);
|
|
|
|
int a = 20;
|
|
int b = 50;
|
|
int c = a*8;
|
|
int d = a*9;
|
|
int e = b-a;
|
|
int f = b*2;
|
|
int g = f+e;
|
|
|
|
line(a, f, b, g);
|
|
line(b, e, b, g);
|
|
line(b, e, d, c);
|
|
line(a, e, d-e, c);
|