P5JS un muñequito con Formas básicas
https://p5js.org/es/learn/coordinate-system-and-shapes.html
function setup(){
createCanvas(200, 200);
rectMode(CENTER);
}
function draw(){
rect(100,100,20,100);
ellipse(100,70,60,60);
ellipse(81,70,16,32);
ellipse(119,70,16,32);
line(90,150,80,160);
line(110,150,120,160);
}
No hay comentarios:
Publicar un comentario