Trinidad Valenzuela: tarea6 escritura explosiva

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ítuloTrinidad Valenzuela, tarea 6
Tipo de ProyectoProyecto de Curso
Palabras Clavetarea 6
AsignaturaTaller Inicial Común 1ª y 2ª Etapa,
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.
Alumno(s)Trinidad Valenzuela
ProfesorHerbert Spencer

int strokeSize = 10; boolean first = true; float x; float y; float xCenter = 500; float yCenter = 250; float radius = 300; void setup() {

size(900,200);
background(15);
frameRate(500);

} void draw() {

fill(6,6);
rect(0,0,width,height);
makeLines();

} void makeLines() {

strokeWeight(random(5));
x = (cos(radians(random(360))) * radius) + yCenter;
y = (sin(radians(random(360))) * radius) + yCenter;
if(mousePressed == true){
  x = mouseX;
  y = mouseY;
}

// strokeWeight(strokeSize);

stroke(#C0FF00);
line(x, y, xCenter+2, yCenter+2);
line(x, y, xCenter+40, yCenter+6);
xCenter = x++;
yCenter = y;

}