Ma Jesus O: Ciclo For

De Casiopea


TítuloMa Jesus O: Ciclo For
Tipo de ProyectoProyecto de Taller
Palabras Clavetarea 2
Período2013-
AsignaturaImagen Escrita,
Del CursoImagen Escrita 2013 - DIS,
CarrerasDiseño Gráfico"Diseño Gráfico" is not in the list (Arquitectura, Diseño, Magíster, Otra) of allowed values for the "Carreras Relacionadas" property., Diseño Industrial"Diseño Industrial" is not in the list (Arquitectura, Diseño, Magíster, Otra) of allowed values for the "Carreras Relacionadas" property.
Alumno(s)Maria Jesus Oliva Palma
ProfesorHerbert Spencer


void setup() {
  size(500, 500);
  background(0);
}

void draw () {
  fill(100,0,200,40); 
  stroke(100,0,0);  
  strokeWeight(0.25);
  rectMode(CORNER); 
  translate(width/2, height/2);
  rotate(PI+mouseX); 
  rect(100, 0, width-300, height-300);
  if (key == 's') { 
    saveFrame("MaJesus-Ciclo for.png");
  }
}