15 lines
251 B
Plaintext
15 lines
251 B
Plaintext
void setup() {
|
|
size(200, 200);
|
|
background(255);
|
|
}
|
|
void draw() {
|
|
background(255);
|
|
|
|
// first line to center
|
|
line(mouseX, mouseY,
|
|
200/2, 200/2);
|
|
// second line from center
|
|
line(200/2, 200/2,
|
|
100+100-mouseX, 100+100-mouseY);
|
|
}
|