What are some rasterization algorithms that can just project a 3d sphere into a pixel grid? I want to avoid ray casting. Essentially, given a 3d coordinate and a radius, is there a quick way to just create a 2d circle/ellipse on a pixel grid?
For example: circle at (2,2,2) with radius 4 gets projected to five pixels: p1(2,0)p2(0,1) p3(1,1) p4(2,1)p5(1,2)
I have come across techniques such as pixel splatting for particle systems but I haven't found a clear answer on how to do this.
Thanks