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

De Casiopea
(Página creada con '{{Proyecto |Título=Daniela Delmás: Tarea 4 Piz }}')
 
Sin resumen de edición
Línea 1: Línea 1:
{{Proyecto
{{Proyecto
|Título=Daniela Delmás: Tarea 4 Piz
|Título=Daniela Delmás: Tarea 4 Pizarra
|Tipo de Proyecto=Proyecto de Curso
|Palabras Clave=tarea 4
|Año de Inicio=2012
|Carreras Relacionadas=Diseño Gráfico, Diseño Industrial
|Asignaturas Relacionadas=Imagen Escrita 2012,
|Cursos Relacionados=Imagen Escrita 2012,
|Profesor=Herbert Spencer,
|Alumnos=Daniela Delmás,
}}
}}
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);
}
}

Revisión del 09:23 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);
}

}