quadstrips + light normals

Started by
2 comments, last by StiNKy 22 years, 10 months ago
Hi I''m currently trying to render a heightmap: for (currentY = 1; currentY <= 16; currentY++) { glBegin(GL_QUAD_STRIP); for (currentX = 1; currentX <= 16; currentX++) { glVertex3f(currentX, HeightMap[currentX][currentY-1], currentY-1); glVertex3f(currentX, HeightMap[currentX][currentY], currentY); } glEnd(); } When, how, and how often should I put in the normal''s of each of the quads that I''m drawing? I sort of understand how to do normals with single triangles, but not with quads, not to mention quad strips... Thanks in advance StiNKy
Advertisement
I would suggest that you just use all triangles. For two reasons, one is that you are already familiar with how to get it''s normals, and two is that its faster on some cards for all triangles.

------------------------------
Trent (ShiningKnight)
E-mail me
OpenGL Game Programming Tutorials
Thanks for your reply. But if I use quads it finds the best method in which way I connect the two tri''s that represent one block in the height map. don''t understand? nevermind
I''m only familiar with getting it for single triangles, not strips, so could you help me in how I would go about it?
quads will give a problem with lighting when clipped.

u cant do perface normals but per vertex normals are just.
glNormal3f();
glVertex3f(currentX, HeightMap[currentX][currentY], currentY)
glNormal3f();
glVertex3f(currentX, HeightMap[currentX][currentY], currentY)

http://members.xoom.com/myBollux

This topic is closed to new replies.

Advertisement