Camilo Escobar:Pizarrón

De Casiopea


TítuloPizarrón
Tipo de ProyectoProyecto de Curso
Palabras Clavetarea 4
AsignaturaTaller Inicial Común 1ª y 2ª Etapa,
Del CursoImagen Escrita 2012,
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)Camilo Escobar
ProfesorHerbert Spencer
void setup() {
  size(screen.width, screen.height);
  smooth();
  background(0);
  smooth();
  stroke(200, 255);
  strokeCap(ROUND);
}

void draw() {
  if (mousePressed) 
    line(mouseX, mouseY, pmouseX, pmouseY);
}