Erase all

this.clearPen();

Stamp

this.stamp();

Pen down

this.penDown = true;

Pen up

this.penDown = false;

Set pen color

// rgb:
this.penColor = Color.rgb(77, 151, 255);

// rgba:
this.penColor = Color.rgb(77, 151, 255, 0.5);

// hsv (hue from 0 to 100):
this.penColor = Color.hsv(60, 70, 100);

// hsva (hue from 0 to 100):
this.penColor = Color.hsv(60, 70, 100, 0.5);

Change pen value

this.penColor.h += 10;
this.penColor.s += 10;
this.penColor.v += 10;
this.penColor.a -= 0.1;

Set pen value

this.penColor.h = 10;
this.penColor.s = 10;
this.penColor.v = 10;
this.penColor.a = 0.9;

Change pen size

this.penSize += 10;

Set pen size

this.penSize = 50;