mirror of
https://github.com/processing/processing4.git
synced 2026-01-29 03:11:08 +01:00
18 lines
244 B
Plaintext
18 lines
244 B
Plaintext
/**
|
|
* Continuous Lines.
|
|
*
|
|
* Click and drag the mouse to draw a line.
|
|
*/
|
|
|
|
void setup() {
|
|
size(640, 360);
|
|
background(102);
|
|
}
|
|
|
|
void draw() {
|
|
stroke(255);
|
|
if (mousePressed == true) {
|
|
line(mouseX, mouseY, pmouseX, pmouseY);
|
|
}
|
|
}
|