Re: [Algorithms] Simple culling question...
Brought to you by:
vexxed72
|
From: Lionel F. <li...@mi...> - 2000-10-31 10:50:50
|
Hello, I also use another trick, which is to have a flag for each object I have to clip. - For the frame F0, if the mesh M is clipped by the left plane, for example, I store the num of the left plane with the object. - For the next frame F1, the first plane used to check if M is visible will the previous plane (the left one here). For a 3D world that move not to quickly, this gives very good results. I call this using the time coherence of my 3D world. Have a good day, Lionel. |