Diferencia entre revisiones de «Daniela Delmás: Pizarra»

De Casiopea
Sin resumen de edición
Sin resumen de edición
 
Línea 6: Línea 6:
|Carreras Relacionadas=Diseño Gráfico, Diseño Industrial
|Carreras Relacionadas=Diseño Gráfico, Diseño Industrial
|Asignaturas Relacionadas=Imagen Escrita 2012,  
|Asignaturas Relacionadas=Imagen Escrita 2012,  
|Cursos Relacionados=Imagen Escrita 2012,  
|Cursos Relacionados=Imagen Escrita 2012,
|Profesor=Herbert Spencer,  
|Profesor=Herbert Spencer,
|Alumnos=Daniela Delmás,  
|Alumnos=Daniela Delmás,
}}
}}
float d;
float d;

Revisión actual - 09:25 19 abr 2012


TítuloDaniela Delmás: Tarea 4 Pizarra
Tipo de ProyectoProyecto de Curso
Palabras Clavetarea 4
Período2012-
AsignaturaImagen Escrita 2012,
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)Daniela Delmás
ProfesorHerbert Spencer

float d;

void setup() {

size(700,700);
smooth();
background(#58FAAC);
stroke(#088A68);
strokeCap(ROUND);

}

void draw() {

if (mousePressed) { 
  strokeWeight(10);
  line(mouseX, mouseY, pmouseX, pmouseY);
}

}

void keyPressed() {

if (key == 'a') {
  stroke (#FE2E2E);
}
if (key == 's') {
  stroke (#FF8000);
}
if (key == 'd') {
  stroke (#FFFF00);
}
  if (key == 'f') {
  stroke (#80FF00);
}
if (key == 'g') {
  stroke (#01DF3A);
}
if (key == 'h') {
  stroke (#00BFFF);
}
if (key == 'j') {
  stroke (#AC58FA);
}
if (key == 'k') {
  stroke (#A901DB);
}
if (key == 'l') {
  background(#FF0080);
}

}