Antonia Lara: Tarea 4

De Casiopea
Revisión del 11:15 29 jun 2015 de Hspencer (discusión | contribs.)
(difs.) ← Revisión anterior | Revisión actual (difs.) | Revisión siguiente → (difs.)


TítuloTarea 4
Tipo de ProyectoProyecto de Curso
Palabras Clavetarea 4
Período2012-2012
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)Antonia Lara
ProfesorHerbert Spencer

float d;

void setup() {

size(700,700); smooth(); background(340,150,100); stroke(40, 500); strokeCap (ROUND); }

void draw() {

if (mousePressed) {

d = dist(mouseX, mouseY, pmouseX, pmouseY);

strokeWeight(4); line(mouseX, mouseY, pmouseX, pmouseY); } }

void keyPressed() {

if (key == 'a') { stroke(30,20,25); } if (key == 'h') { stroke (150, 200, 66); } if (key == 'ñ') { stroke (308, 100, 10); } if (key == 'j'){ stroke (77,90); } if (key == 'd') { stroke (666,999,77); } if (key == 'z') { background(417); } }