16 lines
238 B
Plaintext
16 lines
238 B
Plaintext
void setup()
|
|
{
|
|
size(800, 600);
|
|
}
|
|
void draw()
|
|
{
|
|
// Clear Background to prevent shadows
|
|
background(40, 40, 40, 256);
|
|
|
|
|
|
line(0, 0, mouseX, mouseY);
|
|
|
|
circle(mouseX, mouseY, 10);
|
|
circle(mouseX * .5, mouseY * .5, 10);
|
|
}
|