🎉 Celebrating 25 Years of GameDev.net! 🎉

Not many can claim 25 years on the Internet! Join us in celebrating this milestone. Learn more about our history, and thank you for being a part of our community!

Hidden Surface Removal?

Started by
3 comments, last by Mike00 23 years, 11 months ago
People keep mentioning how programs run faster with hidden surface removal. Anyone know of any good tutorials for this? Thanks!
Advertisement
Did you do a search on:
  • Backface Culling
  • BSP Trees
  • Octrees
  • ...etc...


  • Check FlipCode, or the Demo stuff on GameDev here...
    Maybe use Altavista...

    There are lot''s of methods...what do you need exactly?

    I don''t know. I just want my programs to run faster. I guess whichever way is the easiest. Thanks!
    Backface culling is probably the thing you want. It always in any situation will work.

    I have a little tutorial on Backface Culling on my homepage, but there are probably better ones...

    Have you checked out Flipcode or the demo coders stuff on Gamedev?

    here''s a quote from baskuenens backface-culling tutorial:

    "To calculate the vector from camera to vertex, you can first transform all vertices from object space to world space. Don''t do this! Use the inverse matrix transformation to calculate the camera position in object space! Now you only need 1 inverse matrix transformation, instead of the costly transformation of all vertices!"

    How do you do this??

    // thanks in advance, Ankan


    This topic is closed to new replies.

    Advertisement