Thursday, October 9, 2025

Show HN: SDF-Field Synthesis – rendering SDF without ray marching https://ift.tt/Ef1xjI9

Show HN: SDF-Field Synthesis – rendering SDF without ray marching Hello, HN! I have developed a new approach to rendering the scenes described by the SDF, which completely abandons the classic ray marching. The idea is simple: instead of searching for ray intersections, we consider the scene as a potential field of view, where the source is the SDF itself. The solution of the field equation gives zero isosurfaces — they correspond to the visible boundaries of objects. Advantages: - natural coherence between pixels, - analytical continuation for infinite resolution, - adaptive computational load depending on the complexity of the scene, - all the advantages of SDF are preserved (procedurality, Boolean operations, compactness). The full description of the idea with basic formulas and concept is published on Zenodo: https://ift.tt/I8BpmoG It will be interesting to hear the opinion of the community: - How feasible is the method? - What potential applications do you see? - Are there any similar approaches that I might have missed? https://ift.tt/j437XcA October 9, 2025 at 09:12PM

No comments:

Post a Comment

Show HN: Rewriting Scratch 3.0 from scratch in Lua (browser-free native runtime) https://ift.tt/5Af6h7W

Show HN: Rewriting Scratch 3.0 from scratch in Lua (browser-free native runtime) Built a native Scratch 3.0 runtime in Lua that runs .sb3 pr...