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?
:(
CFLT = macro (guessing) for C Float type..
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.
Thanks for the reply. These numbers do look tedious to try and figure out however.