lunes, 26 de septiembre de 2011

Fractales asignación

No de ControlNombre CompletoFractales asignacion
08110796AGUILAR ESTALA CESAR OMARFractint . http://www.nahee.com/spanky/www/fractint/fractint.html
09110033ALVAREZ ALVAREZ SELENEultra fractal  http://www.ultrafractal.com
08110929ARMENDARIZ SANCHEZ JESUS EDUARDOFractal eXtreme
Fractal extreme http://www.taringa.net/posts/imagenes/1771525/Programas-generador-de-fractales.html
08110896BARRAZA GAMEROS LAURAUltra fractal http://www.taringa.net/posts/imagenes/1771525/Programas-generador-de-fractales.html
08110972BERNAL CANDELARIA SAMUEL IVAN
Fractal eXtreme
Fractal extreme http://www.taringa.net/posts/imagenes/1771525/Programas-generador-de-fractales.html
08110921CARDENAS FERNANDEZ JOSE DANIELL-system http://www.thinkpiece.com
07110979CARREON RIVERA JORGE ANTONIOhop http://ourworld.compuserve.com/homepages/mpeters/hop.htm
08110867CHAVEZ RAMOS DIANAFractal explorer http://skyscraper.fortunecity.com/binary/34/index.html
08110874CHAVEZ RUIZ OMAR ADRIAN Xaos http://www.paru.cas.cz/~hubicka/XaoS
08110936GARCIA QUEZADA ELSAL-s http://coco.ccu.uniovi.es/malva/sketchbook/
07110870GOMEZ CHAVEZ ARNULFO Chaos pro http://www.chaospro.de/
07110772HERRERA ORTEGA MARLYTHQuat http://www.physcip.uni-stuttgart.de/phy11733/quat_e.html
08110805JIMENEZ OCHOA MARIA LUCEROhttp://fractint.programas-gratis.net/
08110847OLVERA GRANILLO CARLOS IVANultra fractal  http://www.ultrafractal.com
08110935ORONA RENDON CESARIterations, Flariumhttp://www.eclectasy.com/Iterations-et-Flarium24/
08110798PARRA HERNANDEZ DIANA LOURDES Caos pro http://www.taringa.net/posts/imagenes/1771525/Programas-generador-de-fractales.html
08110791PEDRAZA MARTINEZ CARLOSfdesign http://spanky.triumf.ca/www/welcome1.html
08110832RODRIGUEZ NIETO JOSE MANUELL-system http://www.thinkpiece.com
08110793SAUCEDO MARQUEZ ANGELhop http://ourworld.compuserve.com/homepages/mpeters/hop.htm
HIPOLITO GONZALEZ SAUL SANTIAGOFractal explorer http://skyscraper.fortunecity.com/binary/34/index.html



Si tienen problemas con el enlace favor de comunicarmelo, algunos  enlaces los redireccionan, el reporte de software lo presentarán en su blog, fecha límite el Lunes 3 de Octubre

Programando GLUT: Ventanas y Animaciones

http://linuxfocus.org/Castellano/January1998/article16.html

Transformaciones geométricas

http://usuarios.multimania.es/andromeda_studios/paginas/tutoriales/aptutgl01.htm


Definición de Résumen
http://definicion.de/resumen/

lunes, 19 de septiembre de 2011

Unidad II Graficación 2D.

 2.1 trazo de líneas rectas
2.2 Representación y trazo de polígonos.

actividad:
1. Lea el contenido del siguiente enlace,  haga su resumen en el cuaderno,
2. En el Laboratoria  ejecute los programas sugeridos
* anote los problemas presentados al ejecutar los programas y como resolvio los problemas ( en su cuaderno)


http://linuxfocus.org/Castellano/January1998/article17.html

martes, 6 de septiembre de 2011

Tarea semana del 5 al 9 de septiembre

del siguiente enlace revisar el CAPÍTULO 2. Transformaciones geométricas
entrega   
viernes 9 de septiembre
en resumen (archivo digital) nombre del archivo : apellidos_alumno


http://es.scribd.com/doc/39029313/Libro-de-Texto-Para-La-Materia-de-Graficacion

Examen Lunes 12 de Septiembre.

viernes, 2 de septiembre de 2011

Triangulo de sierpinski

/* gasket.c   */
/* E. Angel, Interactive Computer Graphics */
/* A Top-Down Approach with OpenGL, Third Edition */
/* Addison-Wesley Longman, 2003 */
/* Two-Dimensional Sierpinski Gasket          */
/* Generated Using Randomly Selected Vertices */
/* And Bisection                              */
#include <GL/glut.h>
void myinit(void)
{

/* attributes */
      glClearColor(1.0, 1.0, 1.0, 1.0); /* white background */
      glColor3f(1.0, 0.0, 0.0); /* draw in red */
/* set up viewing */
/* 500 x 500 window with origin lower left */
      glMatrixMode(GL_PROJECTION);
      glLoadIdentity();
      gluOrtho2D(0.0, 500.0, 0.0, 500.0);
      glMatrixMode(GL_MODELVIEW);
}
void display( void )
{
/* define a point data type */
    typedef GLfloat point2[2];    
    point2 vertices[3]={{0.0,0.0},{250.0,500.0},{500.0,0.0}}; /* A triangle */
    int i, j, k;
    int rand();       /* standard random number generator */
    point2 p ={75.0,50.0};  /* An arbitrary initial point inside traingle */
    glClear(GL_COLOR_BUFFER_BIT);  /*clear the window */

/* compute and plots 5000 new points */
    for( k=0; k<5000; k++)
    {
         j=rand()%3; /* pick a vertex at random */

     /* Compute point halfway between selected vertex and old point */
         p[0] = (p[0]+vertices[j][0])/2.0;
         p[1] = (p[1]+vertices[j][1])/2.0;
  
     /* plot new point */
          glBegin(GL_POINTS);
               glVertex2fv(p);
          glEnd();
  
     }
     glFlush(); /* clear buffers */
 }
void main(int argc, char** argv)
{
/* Standard GLUT initialization */
    glutInit(&argc,argv);
    glutInitDisplayMode (GLUT_SINGLE | GLUT_RGB); /* default, not needed */
    glutInitWindowSize(500,500); /* 500 x 500 pixel window */
    glutInitWindowPosition(0,0); /* place window top left on display */
    glutCreateWindow("Sierpinski Gasket"); /* window title */
    glutDisplayFunc(display); /* display callback invoked when window opened */
    myinit(); /* set attributes */
    glutMainLoop(); /* enter event loop */
}