Camilo Escobar:Pizzarrón

De Casiopea
La versión para imprimir ya no se admite y puede contener errores de representación. Actualiza los marcadores del navegador y utiliza en su lugar la función de impresión predeterminada del navegador.




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);
}