Aucan Identidad circular

De Casiopea
Identidad Circular a base de rectángulo


TítuloIdentidad Circular a base de rectángulo
Tipo de ProyectoProyecto de Curso
Palabras Clavetarea 3
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)Luciano Aucan Lagomarsino
ProfesorHerbert Spencer
I.C. a base de rectángulos


void setup() {
  size(500, 500);
  background(0);
  stroke (200, 80, 40);
}

void draw(){
  if (keyPressed){
    if (key == 's'){
      saveFrame("trium.jpg");
    }
    if (key == ' '){
      background(0); 
    }
  }
  noFill(); //
  strokeWeight(1); // 
  translate(width/2,height/2);
  rotate(PI+mouseX);
  rect(10,98,width-150,height-400);
}