xxxxxxxxxx
27
let img;
function preload() {
img = loadImage('asterisk_normal0003.png');
}
let moonRot = 0;
let moonRotspeed = 0.009;
function setup() {
createCanvas(400, 400);
strokeWeight(0.7);
}
function draw() {
background("#EEEEEE");
moonRot += moonRotspeed;
translate(width/2, height/2);
rotate(moonRot);
translate(-120,-120);
//fill("LightSeaGreen");
//ellipse(width/2, 230, 20, 20);
image(img, width/2, 0, 100, 100);
}