Agustina Fernandez: , Proyecto autorretrato

De Casiopea


TítuloAutorretrato pizarra
Tipo de ProyectoProyecto de Curso
Palabras Clavetarea 1
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)Agustina Fernandez
ProfesorHerbert Spencer
<nowiki>

  void setup() {
  size (700, 650);
  background(255);
  println("size (700, 650);");
  println("noFill();");
}

void draw() {
  if (mousePressed) {
    line(mouseX, mouseY, pmouseX, pmouseY);
    println("vertex("+mouseX+", "+mouseY+");");
  }
}

void mousePressed() {
  println("beginShape();");
}

void mouseReleased() {
  println("endShape();");
}

</nowiki>