Martin Araneda: Tarea 2, 10 lineas

De Casiopea


TítuloMartin Araneda: Tarea 2, 10 lineas
Palabras Clavetarea 2
Período2012-2012
AsignaturaImagen 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)Martin Araneda
ProfesorHerbert Spencer

void setup() {

size(700,700); background(255); smooth();

}

void draw(){

for(int i=0; i<500; i=i+50){ line(30,mouseY,mouseX,i); stroke(0,40,500); line(i,20,mouseX,mouseY); } }