Camilo Escobar:Pizzarrón

De Casiopea




TítuloPizarron
AsignaturaImagen Escrita 2012
Del CursoImagen Escrita 2012
CarrerasArquitectura, Diseñ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.
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);
}