PImage dibujo;
PShape forma;
void setup(){
size(1080,720);
dibujo = loadImage("forma_imagen.png");
forma = loadShape("dibujo_forma.svg");
}
void draw(){
background(0);
tint (255,0,0);
image(dibujo, 100,100);
shape(forma, 500,100);
}
No comments:
Post a Comment