tut, tut, tut: yo ordeno, tú dibujas
.....

foro.

 

IIIIIIIIIIIIIIII S E G U N D A - - - - - - - - F A S E IIIIIIIIIIIIIIII

El foro está cerrado.


Páginas: [ 1 | 2 | 3 | 4 | 5 | 6 | 7 ]


Clave de Red Escolar: 10STM00151
Equipo: "THE CGM"
Título: Garo es copion
Correo: garoescopion@hotmail.com
Nombre del profesor
frente a grupo:
 No se
Fecha: 2008-05-13 13:56:12.064619-05

hola soy casta, el unico que trabaja de este equipo aqui esta mi trabajo de la secion 15

void setup(){
size(200, 200);
background(136, 06, 97);
smooth();
frameRate(100);
}

void draw(){
background(105, 170, 170);
for(int i= 3; i < 180; i=i+18){
for(int j=3; j <180; j=j+18){
fill(random(255), i, j);
noStroke();
rect(i+5+random(5,10), j+random(5,10), i+10+random(5,10), j+10+random(5,10));
}
}
}


Clave de Red Escolar: 21SVM00181
Equipo: Los cosmonautas
Título: Triangulos
Correo: telecsalvadorz@hotmail.com
Nombre del profesor
frente a grupo:
 Alfonso Flores Catarina
Fecha: 2008-05-12 11:39:52.677965-05

Hola compañeros de red escolar, les madamos este código que dibuja una diagonal superior de triangulos de algunos diferentes colores

size (1200,900);
background(0,0,0);
smooth ();
for(int i= 1; i < 1200; i=i+18)
{
for(int j=3; j <1200; j=j+18)
{
fill(j);
noStroke();
triangle(i+5+random(5,10), j+random(5,10), i+10+random(5,10), j+10+random(5,10), i+10, j+10+random(5,10));
}
}


Clave de Red Escolar: 02SGV00168
Equipo: amigos tecnologicos
Título: sesion 17
Correo: liliana_glezk@hotmail.com
Nombre del profesor
frente a grupo:
 liliana_glezk@hotmail.com
Fecha: 2008-05-08 18:16:43.504638-05

void setup(){
size( 230, 230);
background(247);
noLoop();
}

int c = 0;

void draw(){
for(int a = 15; a < 182; a += 25){
for (int b = 15; b < 187; b += 30){
c = c+6;
fill(95+ c,55,894);
flecha(b, a);
}
}
}

void flecha(int x, int y){
stroke(0);
beginShape();
vertex(x+25, y+5);
vertex(x+5, y+25);
vertex(x+35, y+35);
vertex(x+35, y+15);
vertex(x+10, y+20);
vertex(x+25, y+15);
vertex(x+10, y+40);
endShape(OPEN);
}


Clave de Red Escolar: 02SGV00168
Equipo: Las chivistas
Título: secion 16
Correo: liliana_glezk@hotmail.com
Nombre del profesor
frente a grupo:
 Liliana Gonzalez King
Fecha: 2008-05-08 18:11:45.538048-05

void setup(){
size(76,94);
background(45,237,59);
noLoop();
}

void draw(){
flecha(3,8);
flecha(15,18);
flecha(35,29);
flecha(36,29);
}

void flecha(int x, int y){
beginShape();
vertex(x, y+2);
vertex(x+3, y+5);
vertex(x+9, y);
vertex(x+16, y+5);
vertex(x+15, y+19);
vertex(x+9, y+3);
vertex(x, y+12);
endShape(CLOSE);
}


Clave de Red Escolar: 02SGV00168
Equipo: amigos tecnologicos
Título: sesion 16
Correo: liliana_glezk@hotmail.com
Nombre del profesor
frente a grupo:
 Liliana gonzalez king
Fecha: 2008-05-08 18:02:49.375706-05

void setup(){
size(150,120);
background(232, 0, 0);
noLoop();
}

void draw(){
flecha(15,15);
flecha(35,35);
flecha(55,55);
flecha(75,75);
}

void flecha(int x, int y){
beginShape();
vertex(x, y+5);
vertex(x+25, y+25);
vertex(x+25, y+10);
vertex(x+25, y+10);
vertex(x+20, y+15);
vertex(x+65, y+25);
vertex(x, y+25);
endShape(CLOSE);
}


Clave de Red Escolar: 31SGM00037
Equipo: dreams
Título: estrella
Correo: ileana_198@hotmail.com
Nombre del profesor
frente a grupo:
 ileana
Fecha: 2008-05-08 13:08:16.876675-05

holavoid setup(){
size(200,200);
background(37,45,134);
fill(255,0,128);
noStroke();
smooth();
}
void draw(){
background(0,0,0);
beginShape();
vertex(mouseX+20,mouseY+40);
vertex(mouseX+40,mouseY+40);
vertex(mouseX+50,mouseY+20);
vertex(mouseX+60,mouseY+40);
vertex(mouseX+80,mouseY+40);
vertex(mouseX+65,mouseY+50);
vertex(mouseX+80,mouseY+80);
vertex(mouseX+50,mouseY+60);
vertex(mouseX+20,mouseY+80);
vertex(mouseX+35,mouseY+50);
endShape();
}
espero q les guste....
hasta pronto bye...


Clave de Red Escolar: 31SGM00037
Equipo: los megabytes
Título: tarea sesion 9
Correo: ilena_198@hotmail.com
Nombre del profesor
frente a grupo:
 Ileana Cabrera
Fecha: 2008-05-08 13:02:03.774894-05

hola somos de la Sec. Gral #2 y este es nuestro trabajo:

void setup(){
size(200,200);
background(0,0,0);
fill(128,0,0);
noStroke();
smooth();
}
void draw(){
background(37,45,134);
beginShape();
vertex(mouseX+20,mouseY+40);
vertex(mouseX+40,mouseY+40);
vertex(mouseX+50,mouseY+20);
vertex(mouseX+60,mouseY+40);
vertex(mouseX+80,mouseY+40);
vertex(mouseX+65,mouseY+50);
vertex(mouseX+80,mouseY+80);
vertex(mouseX+50,mouseY+60);
vertex(mouseX+20,mouseY+80);
vertex(mouseX+35,mouseY+50);
endShape();
}
espero les guste y esperamos sus comentarios


Clave de Red Escolar: 31SGM00037
Equipo: los megabytes
Título: tarea 16
Correo: ileana_198@hotmail.com
Nombre del profesor
frente a grupo:
 ileana cabrera
Fecha: 2008-05-07 11:23:07.97593-05

hola, somos de la Sec. Gral. #2,terminando el trabajo de la sesion 16 :

size(100,100);
background(0,0,0);
fill(128,0,0);
noStroke();
smooth();
beginShape();
vertex(20,40);
vertex(40,40);
vertex(50,20);
vertex(60,40);
vertex(80,40);
vertex(65,50);
vertex(80,80);
vertex(50,60);
vertex(20,80);
vertex(35,50);
endShape();

espero les sea de su agrado, y esperamos sus respuestas.


Clave de Red Escolar: 31SGV00213
Equipo: Los creativos
Título: sesión 15
Correo: escuelagonzalo@prodigy.net.mx
Nombre del profesor
frente a grupo:
 Margery Sarmiento
Fecha: 2008-04-30 16:22:21.155363-05

void setup(){
size(200, 200);
background(105, 170, 170);
smooth();
frameRate(25);
}

void draw(){
background(545, 115, 115);
for(int i= 65; i < 125; i=i+183){
for(int j=3; j <180; j=j+58){
fill(random(841));
noStroke();
triangle(i+20+random(5,65), j+random(5,52), i+8+random(5,10), j+65+random(5,20), i+70, j+65+random(5,10));
}
}
}
envio este trabajo esperándo sea del agrado y este correcto¿¿¿


Clave de Red Escolar: 02SGV00168
Equipo: las chivistas
Título: seccion 14
Correo: liliana_glezk@hotmail.com
Nombre del profesor
frente a grupo:
 Liliana Gonzales King
Fecha: 2008-04-25 19:38:37.175548-05

void setup(){
size(169, 196);
smooth();
frameRate(20);
}

void draw(){
background(206,52,150);
for(int i=19; i < 188; i = i + 15){
for(int j=19; j<188; j = j+ 15){
fill(random(965.0), 205);
noStroke();
float x = random(5.0, 56.1);
ellipse(i, j, x, x);
}
}
pushMatrix();
translate(mouseX-150, 0);
for(int i=19; i < 200; i++){
fill(random(255.0), 100);
noStroke();
float x = random(0.0, 55.1);
rect(i+x, x, 1, 200-(x*2));
}
popMatrix();
}


Clave de Red Escolar: 02SGV00168
Equipo: Las Chivistas
Título: secion 14
Correo: liliana_glezk@hotmail.com
Nombre del profesor
frente a grupo:
 Liliana Gonzalez King
Fecha: 2008-04-25 19:38:31.292188-05

void setup(){
size(164,195);
smooth();
frameRate(2);
}

void draw(){
background(22,232,12);
for(int i=25; i < 135; i = i + 11){
for(int j=19; j<300; j = j+ 96){
fill(random(255.0), 190);
noStroke();
float x = random(5.0, 35.585);
ellipse(i, j, x, x);
}
}
pushMatrix();
translate(mouseX-150, 0);
for(int i=19; i < 200; i++){
fill(random(255.0), 100);
noStroke();
float x = random(0.0, 55.1);
rect(i+x, x, 1, 200-(x*2));
}
popMatrix();
}


Clave de Red Escolar: 02SGV00168
Equipo: Genios sin rostro
Título: sesion #13
Correo: liliana_glezk@hotmail.com
Nombre del profesor
frente a grupo:
 Liliana Gonzales King
Fecha: 2008-04-25 18:16:42.133872-05

Saludos aqui les mando la tarea de la sesion #13 ya que no han abierto las ligas de tareas...



void setup(){
size(600, 700);
smooth();
frameRate(0);
}
void draw(){
pushMatrix();
translate(mouseY-60, mouseX+40);
background(303, 90, 40);
for(int i=19; i < 115; i = i + 5){
for(int j=19; j<125; j = j+ 5){
fill(random(270.0));
noStroke();
float x = random(10.0, 30.1);
rectMode(CENTER);
ellipse(i, j, x, x);
}
}
popMatrix();
}


Clave de Red Escolar: 02SGV00168
Equipo: reyes de la informatica
Título: sesion 13
Correo: liliana_glezk@hotmail.com
Nombre del profesor
frente a grupo:
 liliana king
Fecha: 2008-04-25 17:30:09.940488-05

void setup(){
size(636, 200);
smooth();
frameRate(5);
}

void draw(){
background(240,29,36);
for(int i=19; i < 143; i = i + 15){
for(int j=19; j<274; j = j+ 15){
fill(random(123.0), 166);
noStroke();
float x = random(5.0, 10.1);
ellipse(i, j, x, x);
}
}
pushMatrix();
translate(mouseX-174, 0);
for(int i=19; i < 234; i++){
fill(random(196.0), 255);
noStroke();
float x = random(0.0, 55.1);
rect(i+x, x, 1, 200-(x*2));
}
popMatrix();
}


Clave de Red Escolar: 02SGV00168
Equipo: amigos tecnologicos
Título: sesion 14
Correo: liliana_glezk@hotmail.com
Nombre del profesor
frente a grupo:
 Liliana gonzalez king
Fecha: 2008-04-25 17:26:41.001112-05

void setup(){
size(200, 200);
smooth();
frameRate(5);
}

void draw(){
background(255);
for(int i=19; i < 188; i = i + 15){
for(int j=19; j<188; j = j+ 15){
fill(random(255.0), 190);
noStroke();
float x = random(5.0,651);
ellipse(i, j, x, x);
}
}
pushMatrix();
translate(mouseX-150,12);
for(int i=19; i < 200; i++){
fill(random(255.0), 56);
noStroke();
float x = random(013,55.1);
rect(i+x, x, 1, 200-(x*2));
}
popMatrix();
}


Clave de Red Escolar: 15SGM00346
Equipo: NEUTRONES
Título: Comentario sesion 13
Correo: sec33rfm@yahoo.com
Nombre del profesor
frente a grupo:
 Fernando
Fecha: 2008-04-25 13:45:07.748444-05

Hola: que tal ; nosotros somos el equipo de NEUTRONES y en esta ocasion les queremos dar a conocer nuestra opinion de la sesion 13.
en esta sesion aprendimos nuevas funciones tales como : translate;push matrix y pop matrix.
desearimos que pudieran abrir el foro de tareas.
por su atencion .
gracias.


Páginas: [ 1 | 2 | 3 | 4 | 5 | 6 | 7 ]

El foro está cerrado.

sesiones
foro
tareas
noticias
tut, tut, tut

 

Red Escolar, México, 2007