setting

v0.0.5
background(r, g, b, a);

Clear a background with a color

Arguments

rThe red byte
gThe green byte
bThe blue byte
aThe alpha byte


fill(r, g, b, [a]);

Set the fill color for shapes

Arguments

rThe red byte
gThe green byte
bThe blue byte
[a]The alpha byte

Can also accept a hexadecimal or color name as string

 fill(255, 150, 40);
 square(200, 200, 64);

strokeWeight(weight);

Arguments

weightThe line width in pixels

 strokeWeight(8);
 line(200, 200, mouseX, mouseY);

noFill();

Disable fill


stroke(r, g, b, a);

Set the stroke color for shapes

Arguments

rThe red byte
gThe green byte
bThe blue byte
aThe alpha byte

Only implemented for line and circle


noStroke();

Only implemented for line and circle Disable stroke


push();

Save the style settings


pop();

Restore the style settings