xxxxxxxxxx
37
let r = 3.0;
function setup() {
createCanvas(400, 400);
}
function draw() {
background(0);
push();
translate(100, 300);
rotate(r);
r = r + .01;
fill(400, 200, 250);
textSize(20);
text('ladies is pimps too', 0, 0);
pop();
push();
translate(width / 2, height / 2);
rotate(r);
r = r + .01;
fill(400, 200, 250);
textSize(20);
text('ladies is pimps too', 0, 0);
pop();
}