Xavier Holt edited Points_and_Planes_We_do__.md  about 8 years ago

Commit id: 3507f123ae6edbe90acd6b66624a75ab2a4fa654

deletions | additions      

       

## Heap  We populate the heap   ## Correctedness  The heap stores all of the intervals we are currently intersecting with our ray. Our heap structure is defined to maintain the order of these intervals along the ray. We can only see a point if it is not behind any intervals when we reach it with our ray.  We emit a point IFF it is in front of the root of our heap. Our heap structure is defined to maintain the order of intervals along the ray, with the front-most being placed at the root.