Diferencia entre revisiones de «María Jesús Arestizábal Tarea 7»

De Casiopea
Sin resumen de edición
Sin resumen de edición
Línea 6: Línea 6:
|Asignaturas Relacionadas=Imagen Escrita 2012,
|Asignaturas Relacionadas=Imagen Escrita 2012,
|Cursos Relacionados=imagen escrita 2012
|Cursos Relacionados=imagen escrita 2012
|Alumnos=María Jesús Arestizábal,  
|Alumnos=María Jesús Arestizábal,
}}
}}
Insect[] ins; float margin = 60;
Insect[] ins; float margin = 60;

Revisión del 10:14 10 may 2012


TítuloTarea 7
Tipo de ProyectoProyecto de Curso
Palabras Clavetarea 7
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)María Jesús Arestizábal

Insect[] ins; float margin = 60;

void setup() {

size(600, 600);
int ynum = 10;
int xnum = 8;
ins = new Insect[ynum * xnum];
float ysp = (height - (6 * margin)) / ((float)ynum - 4);
float xsp = (width - (6 * margin)) / ((float)xnum - 4);
int c =0;
for (float y = margin; y <= height - margin; y+= ysp) {
  for (float x = margin; x <= width - margin; x += xsp) {
    ins[c] = new Insect(x, y);
    c++;
  }
} 
smooth();

}


void draw() {

background(150,360,360);
for (int i = 0; i < ins.length; i++) {
  ins[i].render();
}

}


class Insect {

float x, y;
float[][] v; 
int vn;  
float tam;
float w, h;
Insect(float x, float y) {
  this.x = x;
  this.y = y;
  vn = round(random(10, 18));
  v = new float[vn][2];
  tam = 44;
  init();
}
void init() {
  w = tam/3;
  h = tam/2;
  for (int i = 0; i < vn; i++) {
    v[i][0] = random(h);
    v[i][1] = random(-h/4, h/2);
  }
}
void trace() {
  noFill();
  stroke(#299BF0);
  strokeWeight(.4);
  beginShape();
  vertex(v[0][0], v[0][1]);
  for (int i = 0; i < vn; i++) {
    curveVertex(v[i][2], v[i][1]);
  }
  vertex(v[vn-2][0], v[vn-1][1]);
  endShape();
}
void render() {
  pushMatrix();
  {
    translate(x, y);
    trace();
    scale(-2, 2);
    trace();
  }
  popMatrix();
}

}

void keyPressed() {

if (key == 'm') {
  for (int i = 0; i < ins.length; i++) {
    ins[i].init();
  }
}
if (key == 'j') {
  for (int i = 0; i < ins.length; i++) {
    ins[i].tam--;
    ins[i].init();
  }
}

}