Entradas

LLavero

Llavero by arthurtheboss90 on Sketchfab
Ejercicio 1 by arthurtheboss90 on Sketchfab

Proyecto libre

http://www.iesrdelgado.org/web2017/web2018/arturo/proyecto_libre/index.html

Proyecto 2

http://www.iesrdelgado.org/web2017/web2018/arturo/proyecto_2/index.html

elipse que se mueve

int x=100; int y=100; void setup(){   size(400,400); } void draw(){   background(200);   ellipse(x,y,50,100); } void keyPressed(){   if(key=='w'){     y=y-10;   }   if(key=='s'){     y=y+10;   }   if(key=='a'){     x=x-10;   }   if(key=='d'){     x=x+10;   }   if(key=='w'){   fill(random(0,255),random(0,255),random(0,255));   }   if(key=='a'){   fill(random(0,255),random(0,255),random(0,255));   }   if(key=='s'){   fill(random(0,255),random(0,255),random(0,255));   }   if(key=='d'){   fill(random(0,255),random(0,255),random(0,255));   } } void mousePressed(){   fill(random(0,255),random(0,255),random(0,255)); } void mouseReleased(){   fill(255); } void keyReleased(){   if(key=='w'){     fill(255);   }   if(key=='a'){     fill(255);   } ...

Ejercicio 7

rect(15,15,50,50); ellipse(60,60,55,55); ellipse(60,60,55,55); rect(15,15,50,50);

Ejercicio 6

size(150,100); fill(255,0,0); stroke(0,0,255); quad(61,60,94,60,99,83,81,90); rect(10,10,60,60); triangle(12,50,120,15,150,60);