frusty

Started by
1 comment, last by vanne 22 years, 9 months ago
hallo 1st time poster here.. my primitves get culled when they go too far into the distance, but they''re really snapped away. is there some easy limit to set (the frustrum(?)?).. how do I do that? any help would be greatly appreciated, thanks.. cheers..
Advertisement
It''s spelt "frustum". It seems to confuse a lot of people, actually

As to your specific question, the far clipping plane is a part of your projection matrix. If you want to extend it, look at how that is set up. Just remember that the further you far clipping plane is, the less precision you''ll have (since the same [0,1] mapping has to be spaced over a larger distance) and you might get noticible artifacts. If you''re using gluPerspective to set the perspective transform, the far clipping plane is set with the 4th parameter, zFar.

If you''re looking at making object appear to slowing fade in from the distance, look into distance-based fog (with things like glFog().)

War Worlds - A 3D Real-Time Strategy game in development.
thanks! that sure did the trick!

This topic is closed to new replies.

Advertisement