xxxxxxxxxx
125
function setup() {
createCanvas(400, 400, WEBGL);
}
function draw() {
background(255);
noStroke();
fill(0, 0, 0, 50);
push();
translate(-100, -50);
beginShape();
vertex(0, 0);
vertex(0 + 200, -100);
vertex(0 + 160, +200);
vertex(0 + 20, +160);
vertex(0, 0);
endShape();
pop();
//vertex shape 2
push();
translate(-100, -50);
scale(0.98);
rotateY(0.3);
beginShape();
vertex(0, 0);
vertex(0 + 200, -100);
vertex(0 + 160, +200);
vertex(0 + 20, +160);
vertex(0, 0);
endShape();
pop();
push();
translate(-100, -50);
scale(0.96);
rotateY(0.5);
beginShape();
vertex(0, 0);
vertex(0 + 200, -100);
vertex(0 + 160, +200);
vertex(0 + 20, +160);
vertex(0, 0);
endShape();
pop();
push();
translate(-100, -50);
scale(0.94);
rotateY(0.7);
beginShape();
vertex(0, 0);
vertex(0 + 200, -100);
vertex(0 + 160, +200);
vertex(0 + 20, +160);
vertex(0, 0);
endShape();
pop();
push();
translate(-100, -50);
scale(0.92);
rotateY(0.9);
beginShape();
vertex(0, 0);
vertex(0 + 200, -100);
vertex(0 + 160, +200);
vertex(0 + 20, +160);
vertex(0, 0);
endShape();
pop();
push();
translate(-100, -50);
scale(0.9);
rotateY(1.1);
beginShape();
vertex(0, 0);
vertex(0 + 200, -100);
vertex(0 + 160, +200);
vertex(0 + 20, +160);
vertex(0, 0);
endShape();
pop();
push();
translate(-100, -50);
scale(0.88);
rotateY(1.3);
beginShape();
vertex(0, 0);
vertex(0 + 200, -100);
vertex(0 + 160, +200);
vertex(0 + 20, +160);
vertex(0, 0);
endShape();
pop();
push();
translate(-100, -50);
scale(0.86);
rotateY(1.5);
beginShape();
vertex(0, 0);
vertex(0 + 200, -100);
vertex(0 + 160, +200);
vertex(0 + 20, +160);
vertex(0, 0);
endShape();
pop();
//arc
fill(234, 233, 202);
arc(-100, -50, 100, 100, 0.7*PI, 1.5 * PI);
//crossing line
strokeWeight(4);
stroke(40);
line(500, 300, 0, -150, 10, -500);
}