Juan Pablo Vergara: Proyecto herramienta de dibujo
De Casiopea
Título | herramienta dibujo, imagen escrita |
---|---|
Tipo de Proyecto | Proyecto de Curso |
Palabras Clave | tarea 4 |
Período | 2013-2013 |
Asignatura | Imagen Escrita, |
Del Curso | Imagen Escrita 2013 - DIS, |
Carreras | 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) | Juan Pablo Vergara |
Profesor | Herbert Spencer |
void setup() { size(500,500); // tarea herramienta de dibujo background(#000000); stroke(255); strokeWeight(5); smooth(5); } void draw(){ if (mousePressed) {point(mouseX, mouseY); } if(key=='X'); } void keyPressed(){ if(key=='r'){stroke(#ffdf61); } if(key=='n'){stroke(25,50); smooth(2); } if(key=='c'){stroke(#6C470E); } if (key == 'g' || key == 's') { //Al apretar s se guarda la imagen. saveFrame ("herramienta"); } }