Paula Nicole Castillo: 1er Experimento - Lineas

De Casiopea
Lineas de colores


TítuloLineas de colores
Tipo de ProyectoProyecto de Curso
Palabras Claveexperimento
Período2012-
AsignaturaTaller Inicial Común 1ª y 2ª Etapa,
Del CursoImagen 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)Paula Nicole Castillo
ProfesorHerbert Spencer


La idea de esto es probar como se van formando lineas y los colores.

 

void setup() {
  size(700,700);
  background(255);
  smooth  (); //Suavizo el trazo
}
 
void draw() {
  stroke(mouseX/3,mouseY/3,50,70); //declaro el cambio de color en la linea
  strokeWeight (1); // grozor de trazo
  line (mouseX,mouseY,120,150); // tamaño y forma de la linea
}