Back Clipping Plane

Started by
2 comments, last by Ozz 23 years, 11 months ago
How move the back clipping plane back so as to draw larger models without them being clipped?
Advertisement
Are you using OpenGL?

(Sorry hit the wrong button)
If you''re using OpenGL check out the "glFrustrum" function.

glFrustum(
GLdouble left,
GLdouble right,
GLdouble bottom,
GLdouble top,
GLdouble znear,
GLdouble zfar
);

Then set the "zfar" a bit further...

Or with

gluPerspective(double angle,double aspect,double near,double far);

set a higher far value.

Visit our homepage: www.rarebyte.de.st

GA
Visit our homepage: www.rarebyte.de.stGA

This topic is closed to new replies.

Advertisement