Valentina Cornejo , tarea 6

De Casiopea
Tarea 6


TítuloTarea 6
Tipo de ProyectoProyecto de Curso
Palabras Clavetarea 6
Período2012-
AsignaturaImagen Escrita 2012,
Del CursoTaller Inicial Común 1ª y 2ª Etapa,
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)Valentina Cornejo
ProfesorHerbert Spencer

color c = color(#18E2EA); float x = 700; float y = 300; float speed = 3; void setup () {

size (700,700); 

background (#18954D); } void draw () { background (#CEECF5); move(); display (); } void move () { smooth ();

x = x + speed;
if (x > width)
x= 5;
y= y + speed;
if ( y < height);
triangle (15, x, x, 5, y, 5);

}

void display() {

smooth () ;
fill (c);
c= color(#F2F5A9);

saveFrame ( "sdfsdf.jpg");

}