14 MOVIMIENTOS

26 mar 2020


ACTIVIDAD







strokeCap(ROUND);
point(x,y);
strokeCap(SQUARE);

point(x,y);
strokeCap(PROJECT);








void setup() {
size(250,250);
}
void draw() {
for (int i=0; i<100; i+=2) {
  stroke(255-i);
  line(i, 0, i, 200);
}
}












void setup() {
size(250,250);
}
void draw() {
noStroke();
for (int y=0; y<100; y+=10) {
  for (int x=0; x<100; x+=10) {
    fill((x+y) * 1.4);
    rect(x, y, 10, 10);
  }
}















TAREA REALIZAR EL MOVIEMIENTO SIGUIENTE






0 comentarios:

Publicar un comentario