Francisca Rojas 100 lineas mouse

De Casiopea



TítuloFrancisca Rojas 100 lineas mouse
Tipo de ProyectoProyecto de Taller
Palabras Clavelenguaje, dibujo, programación, algoritmo
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)Francisca Rojas

void setup() { size(700, 700); background(250); } void draw() {

 if (mousePressed){
 float r= random (700);

for (int i=0; i<700; i=i+7) {

 line (mouseX, r, i, mouseY);

}}}