Simple question about tutorials.

Started by
3 comments, last by Guy 23 years, 11 months ago
I''ve only been trying out 3d for a couple days now As I back away from objects (ie moving around in my own world), as they reach a certain distance, they just disappear into black. How to stop this?
Advertisement
The objects are clipped against the far clipping plane. As I understand it you cannot turn off this clipping, but you can move the plane further away by setting a larger distance when calling glFrustum(), or any other function that sets up the projection matrix (glOrtho(), gluPerspective(), etc).



- WitchLord

(Removed gluLookAt() for the reason mentioned below)

Edited by - WitchLord on 4/30/00 9:56:19 AM

AngelCode.com - game development and more - Reference DB - game developer references
AngelScript - free scripting library - BMFont - free bitmap font generator - Tower - free puzzle game

(gluLookAt has nothing to do with the far clipping plane.)

Furthermore you won''t have to worry about the far clipping plane because when you have a full 3d scene normally the scene has so many objects that you can''t "see" the far clipping plane.

----------
Drago
osu!
Thanks for correcting me. I don''t know how that got in there. gluLookAt() is for setting up the view matrix not the projection matrix.

Sorry about that.

- WitchLord

AngelCode.com - game development and more - Reference DB - game developer references
AngelScript - free scripting library - BMFont - free bitmap font generator - Tower - free puzzle game

to ANSWER your question thou, find THIS line.

gluPerspective(45.0f,(GLfloat)width/(GLfloat)height,0.1f,100.0f);

The 0.1f, 100.0f is the starting point and ending point for how deep we can draw into the screen, if you would like to push that back, change this to 200.0f that will double the depth of how far u can draw

Axehandler

This topic is closed to new replies.

Advertisement