untitled.gif welcome towards my cool internet house site: re: guys words of wisdom (zoom)

[ back | refresh | last 25 | post new ]

welcome to my cool internet home sit is prosecÇ–tedt to a jam

VALID X M L
Hair Cares Product!!!!!
re: guys words of wisdom
[22390] by "proxy" (node79-39-113-63.pghconnect.com)   on Wed 04 Jun 2003 16:28:20     reply ] [ up ]
 glEnable(GL_LIGHTING); /* enable lighting */
  glBegin(GL_TRIANGLE_STRIP);   /*enable gl triangle strip */

  for (u=0; u<um-1; u++) { // loop from 0 to um-1.  Increment u with iteration.
    /*here is the syntax of a for loop:
      for (initialization; test; update) statement_block
      
      lets translate this into gotos!
      initialization
      newlabel:
      if (!test) {
      statement_block
      update;
      goto newlabel;
      }

      therefore my code is correct!  14.3-1 points for me! Yay!

     */