xxxxxxxxxx
37
function setup() {
createCanvas(800, 800);
noLoop();
angleMode(DEGREES);
textAlign(CENTER,CENTER);
blendMode(MULTIPLY);
// blend
// colorMode(RGB,100);
}
function draw() {
textSize(150);
strokeWeight(0.01);
push();
fill(0,0,255, 190);
rotate(270);
text('BAUHAUS', -420, 100);
pop();
push();
fill(255,0,0, 150);
rotate(270);
text('BAUHAUS', -410, 100);
pop();
push();
fill(255,255,0, 150);
rotate(270);
text('BAUHAUS', -400, 100);
pop();
}