/**
This drawing tool is based on a polynesian style of tattoo called "moko."
"Moko" is an extremely painful form of of tattooing in which ink is applied to
small rakes and hammered into the flesh with a heavy stick. The design as well,
as the pain, is a sign of manhood in many polynesian tribes. As such, when the user
drags the tool across teh screen, the marks left are light and have less meaning.
But if the tool is held in on spot long enough, the mark is darker and small traces
of blood appear.
*/
void setup(){
size(400, 400);
background(255);
noStroke();
}
void draw(){
if (mousePressed == true){
float r = random(0,127.5);
fill(0, 33, 2, 10);
for (int i = -6; i <= 0; i=i+1)
ellipse(mouseX + 5 * i, mouseY, random(1,8),random(1,8));
}
if (mousePressed == true){
fill(232, 0, 0, 7);
for (int i = -6; i <= 0; i=i+1)
ellipse(mouseX + 5 * i, mouseY, random(1,3),random(1,3));
}
}