|
|
|
|
|
by user-the-name
1948 days ago
|
|
Well-formed SDFs are extremely efficient to raycast. The basic idea is that if you evaluate the SDF at a given point, you get the distance to the nearest surface. Thus, you know it is safe to step that far in any direction without crossing a surface. So you can step along a ray with a step size determined by the SDF at each point to quickly converge on a surface. |
|
How would you end up with badly-formed SDFs?