4 comments

  • ANighRaisin2 hours ago
    Binary Space partitioning (<a href="https:&#x2F;&#x2F;en.wikipedia.org&#x2F;wiki&#x2F;Binary_space_partitioning" rel="nofollow">https:&#x2F;&#x2F;en.wikipedia.org&#x2F;wiki&#x2F;Binary_space_partitioning</a>) is an elegant algorithm that solves this issue. This has fallen out of popularity due to the invention of the depth buffer and the power of modern GPUs, but it was used in DOOM and Quake.<p>This technique, due to the unique limitation of the children&#x27;s drag-and-drop coding platform, Scratch, has made it proliferate in the 3D community. <a href="https:&#x2F;&#x2F;scratch.mit.edu&#x2F;projects&#x2F;1203675921" rel="nofollow">https:&#x2F;&#x2F;scratch.mit.edu&#x2F;projects&#x2F;1203675921</a> is an example of such a project.
    • ANighRaisin2 hours ago
      A prettier demo: <a href="https:&#x2F;&#x2F;turbowarp.org&#x2F;984959784&#x2F;fullscreen?stuck&amp;hqpen&amp;fps=60" rel="nofollow">https:&#x2F;&#x2F;turbowarp.org&#x2F;984959784&#x2F;fullscreen?stuck&amp;hqpen&amp;fps=6...</a>
    • CamperBob21 hour ago
      They seem to point out some examples in section 4 that can&#x27;t be handled with space partioning. I&#x27;ll confess I don&#x27;t follow the reasoning. Figure 4.2 is <i>the</i> go-to example of a sorting problem that is handled with BSP trees.
  • jacobp1002 hours ago
    I had a blog post on something similar (but less sophisticated)<p><a href="https:&#x2F;&#x2F;jacobdoescode.com&#x2F;2025&#x2F;05&#x2F;18&#x2F;precomputing-transparency-order-in-3d" rel="nofollow">https:&#x2F;&#x2F;jacobdoescode.com&#x2F;2025&#x2F;05&#x2F;18&#x2F;precomputing-transparen...</a>
  • gatane2 hours ago
    This looks interesting! Thanks for sharing it, wonder if anyone else has related content.
  • NotGMan42 minutes ago
    There was an old AMD&#x2F;Ati demo where they did per-pixel sorting, basicaly a per pixel linked list of fragments.<p>In general: <a href="https:&#x2F;&#x2F;en.wikipedia.org&#x2F;wiki&#x2F;Order-independent_transparency" rel="nofollow">https:&#x2F;&#x2F;en.wikipedia.org&#x2F;wiki&#x2F;Order-independent_transparency</a>