The MASM Forum Archive 2004 to 2012

Project Support Forums => OpenGL Forum => Topic started by: bigrichlegend on October 04, 2006, 11:04:24 PM

Title: Are these generated code??
Post by: bigrichlegend on October 04, 2006, 11:04:24 PM
I would love to program say dini's curve in opengl,  but when I look at these opengl examples - texture_matrix for example, I see lots & lots of numbers which looks generates eg
invoke   glColor3f, CFLT(1.0), CFLT(1.0), CFLT(1.0)
               invoke   glTexCoord2f, CFLT(0.0), CFLT(0.0)
               invoke   glVertex3f, CFLT(-1.0), CFLT(-1.0), CFLT(1.0)
               invoke   glTexCoord2f, CFLT(1.0), CFLT(0.0)
               invoke   glVertex3f, CFLT(1.0), CFLT(-1.0), CFLT(1.0)
               invoke   glTexCoord2f, CFLT(1.0), CFLT(1.0)
               invoke   glVertex3f, CFLT(1.0), CFLT(1.0), CFLT(1.0)
               invoke   glTexCoord2f, CFLT(0.0), CFLT(1.0)
               invoke   glVertex3f, CFLT(-1.0),  CFLT(1.0), CFLT(1.0)....
Are these generated values and if so how do you get them?
:(
Title: Re: Are these generated code??
Post by: evlncrn8 on October 06, 2006, 04:43:38 PM
CFLT = macro (guessing) for C Float type..
Title: Re: Are these generated code??
Post by: u on October 09, 2006, 04:42:42 AM
Nope, the code doesn't seem pre-generated. You just imagine the cube/object and its 3D coordinate system, and put the relevant coordinates of vertices.
Title: Re: Are these generated code??
Post by: bigrichlegend on October 09, 2006, 07:25:04 PM
Thanks for the reply. These numbers do look tedious to try and figure out however.