xxxxxxxxxx
44
var a=0;
var miku,yukkuri;
var size;
function setup() {
createCanvas(windowWidth, windowHeight);
frameRate(30);
miku=loadImage("seigaiha.png");
yukkuri=loadImage("kikko.png");
size=max(width,height)*1.4;
pixelDensity(1);
}
function draw() {
a+=0.2;
background(0);
noStroke();
fill(255,255,255,50);
textAlign(CENTER,CENTER);
textSize(size);
translate(width/2,height/2);
//translate(0,height/8);
rotate(a);
imageMode(CENTER);
tint(255,100,100,120);
image(miku,0,0,size,size);
tint(100,100,255,100);
rotate(-a);
//translate(0,-height/4);
rotate(-a);
image(yukkuri,0,0,size,size);
fill(0,0,0,255);
/*
rotate(a);
rect(-width/4,-height/16,width/2,height/8);
circle(0, 0,height/4.4);
*/
}
function mousePressed() {
let fs = fullscreen();
fullscreen(!fs);
}