Pith. sign in

REVIEW 4 major objections 5 minor 297 references

Signed distance to a point cloud can be computed by blending locally fitted tori, pointwise and fast, with no global solves or meshing.

Reviewed by Pith at T0; open to challenge. T0 means a machine referee read the full paper against a public rubric. the ladder, T0–T4 →

T0 review · deepseek-v4-flash

2026-08-01 19:28 UTC pith:WTEB4RLO

load-bearing objection Clever and practical point-cloud SDF method with a nice theoretical frame, but the learned coefficients are the load-bearing part and they demonstrably choke on denser samplings. the 4 major comments →

arxiv 2607.16946 v1 pith:WTEB4RLO submitted 2026-07-18 cs.GR cs.CV

Points as Tori: Fast Pointwise Signed Distance for Point Clouds

classification cs.GR cs.CV MSC 68U0565D1735F21
keywords signed distance functionpoint cloudtorus fittingconvolutional distance approximationwinding numberPoisson surface reconstructionHopf-Cole transformationneural surface coefficients
verification ladder T0 review T1 audit T2 compute T3 formal T4 reserved

The pith

A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.

The paper claims that signed distance to the surface underlying an oriented point cloud can be approximated by fitting a torus to the neighborhood of each point, then blending the closed-form torus distance functions with an exponentially weighted, self-normalized average. The blend is justified as a Laplace-method limit of a screened potential, which the authors show unifies signed distance with winding numbers and Poisson surface reconstruction. Because each torus is fitted by a pre-trained network that outputs six local surface coefficients, inference is a per-point feed-forward pass followed by a sum over nearby points—no global optimization, grid, or meshing. If correct, this gives an output-sensitive, parallelizable SDF that turns raw point clouds directly into usable signed distance fields for offsets, Booleans, morphological operations, and sphere tracing.

Core claim

The paper's central claim is that the self-normalized exponential blend of per-point torus SDFs (Algorithm 1 / Eq. 25) approximates the signed distance to the surface underlying a point cloud, simultaneously reconstructing the surface as the zero level set and providing distance elsewhere. The authors show analytically that among convolutional distance formulas only the self-normalized form (Eq. 17) can avoid the fundamental limitation of 'snapping' to the sampled points, provided the per-point functions carry second-order surface information; tori are chosen because their SDFs are closed form and they reproduce up to second-order local geometry. The torus parameters come from a small pre-tr

What carries the argument

The central object is the self-normalized convolutional distance formula (Eq. 17, evaluated in shifted form Eq. 25): a kernel-density average of per-point functions g_i weighted by exp(-lambda |x-p_i|), which by Laplace's method converges to the value of g at the closest point as lambda grows. The blended functions g_i are SDFs of tori fitted to each point via six learned polynomial coefficients (shift, first/second fundamental forms), chosen so the torus equator passes through the shifted point with matching principal curvatures. The theoretical load-bearing piece is the signed Hopf-Cole transformation, which turns the viscous eikonal equation into a jump screened Laplace equation and shows

Load-bearing premise

The whole method hinges on the pre-trained network's torus coefficients transferring to unseen sampling conditions—density, noise, holes, topology—since the blend just interpolates whatever per-point functions it is given.

What would settle it

Take a point cloud whose sampling density is well outside the training range (e.g., 10x denser with strong noise), fit tori, and compare the zero level set and SDF gradient norms against ground truth on a shape with known SDF. If the level sets deviate systematically while a classical local fit (e.g., tuned weighted least squares quadratic) stays accurate, the learned coefficients, not the blending formula, are the cause; the paper's Fig. 29 already hints at such a failure mode.

Watch this falsifier. Get emailed when new claim-graph text bears on it.

If this is right

  • Point clouds with normals become directly usable in SDF-based pipelines: offsets, Booleans, morphological dilation/erosion, and sphere tracing, with no intermediate mesh.
  • The method is output-sensitive: query cost is roughly 10^-4 to 10^-3 seconds per point on million-point clouds, and evaluations parallelize, making per-query distance feasible at arbitrary resolution.
  • The theory places winding numbers and Poisson surface reconstruction as limiting cases (screening parameter -> 0) of the same screened-Laplace formulation, so signed distance, occupancy, and reconstruction are unified in one framework.
  • Robustness to noise, outliers, uneven sampling, and inconsistently oriented normals is claimed, including an optional iterative orientation procedure driven by SDF gradients.

Where Pith is reading between the lines

These are editorial extensions of the paper, not claims the author makes directly.

  • If the blend is as robust as claimed, the representation is a natural differentiable shape proxy for inverse rendering and optimization: because tori are analytic, gradients of the SDF flow through the network outputs, so point clouds could be optimized directly as shape parameters.
  • The theory suggests a testable equivalence: for closed clean geometry, tuning the screening parameter lambda should interpolate continuously between winding-number-style occupancy (lambda small) and true distance (lambda large); checking this on a known shape would separate the theory from the learned torus fitting.
  • The learned-coefficient bottleneck could be replaced: if a non-learned, robust torus-fitting scheme were developed, the method's generality and failure modes would change; the paper itself flags this as future work.
  • Sampling density is a known weak spot (the paper's Fig. 29 shows interior SDF can worsen as sampling densifies); a denser-trained variant or adaptive neighborhood sizing would be a direct extension.

Editorial analysis

A structured set of objections, weighed in public.

Desk editor's note, referee report, simulated authors' rebuttal, and a circularity audit.

Referee Report

4 major / 5 minor

Summary. The paper introduces “Points as Tori” (PAT), a method for computing signed distance to an oriented point cloud without global optimization or spatial discretization. For each input point, a pre-trained transformer predicts six polynomial coefficients of a local surface patch; these coefficients determine a fitted torus with a closed-form SDF. The global SDF is then the exponentially weighted, self-normalized blend of per-point torus SDFs (Eq. 1 / Algorithm 1, evaluated as Eq. 25). The theoretical part derives convolutional distance formulas from a signed Hopf–Cole transformation, connects them to winding numbers, Poisson surface reconstruction, and other classic methods, and argues that only the self-normalized formula (Eq. 17) is viable for point clouds. Experiments show fast pointwise queries on clouds up to 29M points, qualitative reconstructions from photogrammetry and other sources, and competitive accuracy on sparse (512-point) datasets. The paper is clearly written and contains substantial theoretical and algorithmic content.

Significance. If the central claim holds—that a pre-trained network can produce per-point torus coefficients that generalize to unseen point clouds and yield a faithful SDF—PAT would be a significant contribution: it offers an output-sensitive, parallelizable, differentiable SDF representation for point clouds, avoiding per-shape fitting and global solves. The theoretical unification of signed distance with winding numbers and Poisson surface reconstruction is elegant and of independent interest. The paper also makes a credible case that the learned component is minimal, with the hard global problem handled by the analytical blend. However, the central accuracy claim is currently conditional: the paper’s own experiments show that density changes degrade the interior SDF (Fig. 29), and the evaluation does not quantitatively cover the density, noise, hole, and topology variation that real point clouds exhibit. The omission of area weights in Eq. 25 is defended only by a hypothesis. These issues are load-bearing for the advertised scope, though they may be addressable with additional experiments, adaptive mechanisms, or a narrowed claim.

major comments (4)
  1. [§6, Fig. 29] The central claim is that PAT “infers signed distance to a well-reconstructed surface underlying imperfect observations.” Yet the paper states in Section 6 and shows in Fig. 29 that as sampling density increases from 110k to 29M points, the interior SDF “can paradoxically get worse,” with the hypothesized cause being that fixed k=64 neighborhoods shrink and the network fits “compact tori.” This is a direct failure mode for a major class of inputs—dense point clouds—which are precisely the inputs used in the performance demonstrations (Figs. 16, 20, 21). The paper offers only a hypothesis and future-work suggestions. To support the central claim, the authors must either demonstrate that accuracy is maintained across densities, or provide a mechanism (e.g., density-adaptive k, λ, or subsampling) that makes the method robust, or explicitly narrow the claim to a restricted density range. The
  2. [§4.2, Eq. (25)] Equation (17) is a surface integral with respect to area measure dA. Its discretization in Eq. (25) sums over points without area weights. For non-uniform point clouds—which appear throughout the applications (COLMAP, GLOMAP, uneven sampling in Fig. 22)—omitting area weights biases the exponential average toward densely sampled regions. The paper’s sole justification is the sentence “We hypothesize that we do not observe many ill effects because we fit surfaces with area, rather than singular kernels.” This is an untested hypothesis. Since the method is explicitly aimed at imperfect, non-uniform observations, this is a load-bearing assumption. The authors should either include area weights (computed as in their SSPD baseline) or provide quantitative evidence that their omission does not materially bias the SDF on non-uniform clouds. Without this, the accuracy of the method on real scanne
  3. [§4.3 / §5.2] The network is trained on point clouds of roughly 2048 points with k=64, and the main quantitative evaluation uses 512-point uniformly sampled point clouds. The paper does not report quantitative accuracy as a function of density, noise level, hole size, or topology. The qualitative demonstrations on dense, noisy, and incomplete data are encouraging, but they do not measure error against ground truth. Given that the central claim depends on the pre-trained network’s generalization, the evaluation needs a systematic study: vary sampling density (e.g., 512, 2048, 8k, 64k, 1M), add noise and outliers, and measure SDF error on the same benchmarks. Without such a study, the reader cannot tell whether the method is broadly applicable or only works near the training distribution. The paper’s own Section 6 acknowledges that “predictions might not be robust for point clouds whose sampling charact
  4. [§4.2, lambda heuristic] The paper sets λ via the heuristic λ=10^3/D, where D is the mean distance to the 64 nearest neighbors averaged over the cloud, and then R_eval=2C/λ. This is a global, hand-set rule that is not adapted to local density or noise. Since λ controls the effective blending radius, the same λ may be inappropriate for clouds with varying density or noise (as Fig. 30 suggests). The paper states that “sophisticated tuning” is left to future work. While this is not itself an error, it interacts with the density-generalization problem: a failure at high density could be due to the network, the fixed k, or the λ heuristic, and the current evaluation cannot separate these. At minimum, the authors should report sensitivity of their results to λ and to the choice of k, or provide a principled procedure for setting these parameters on a new cloud. This is needed to make the claimed “fast and parameter-li
minor comments (5)
  1. [§4.2] The relationship between λ_x in Eq. (26) and the heuristic λ=10^3/D used for the radius R_eval is not fully clarified. Are these the same λ used in Eq. (25)? The text jumps between the formula’s shifted exponent and the acceleration heuristic; please define both and state which one is used in the final SDF evaluation.
  2. [Eq. (15)] Equation (15) uses det(∇²φ(x*)) without stating the assumption that x* is a non-degenerate minimizer with positive-definite Hessian. This is standard for Laplace’s method, but a sentence or footnote would help readers apply the formula to Eq. (17).
  3. [Figures 16, 20] The captions for Figures 16 and 20 say “Query: s” with the numeric value apparently missing or lost in formatting. Since query time is a central performance claim, the actual values should appear in the figure or caption.
  4. [Appendix A.1] The open-surface case introduces the ansatz sign_Ω = sign_w. This is a legitimate derivation step, but the main text (Section 2.1) may overstate the validity of the signed Hopf–Cole transformation for open surfaces. Consider adding a forward reference to Appendix A.1 clarifying that this is an assumption, not a theorem, for non-closed geometry.
  5. [§5.2] The evaluation reports mean absolute error on a 64^3 grid. This global average can be dominated by far-field behavior. Reporting near-surface errors (e.g., within a band around the zero set) would better reflect reconstruction quality and SDF usability for offsets and Boolean operations.

Circularity Check

0 steps flagged

No significant circularity: the asymptotic derivation is self-contained, and the learned torus fitting is disclosed supervised regression evaluated on held-out data.

full rationale

The paper's claimed derivation chain is not circular. Section 2 derives the self-normalized convolutional formula (Eq. 17) from Green's function and Laplace's method, with the signed Hopf-Cole transformation re-derived in Appendix A and relying on the external result of Lipman (2021) rather than on the present authors' prior work. The algorithm instantiates Eq. 17 with per-point torus SDFs, and the torus parameters are produced by a neural network trained with an explicitly stated loss (Eq. 27) against ground-truth SDFs on ABC and procedurally generated shapes. This is ordinary supervised fitting: the fitted parameters are not calibrated on the evaluation data, and the reported accuracy is measured on held-out shapes (Section 5.2). The paper's own limitation statements (Section 6, Figs. 28–29) acknowledge that predictions may degrade for sampling densities far from the training distribution, and that Eq. 25 omits area weights; these are generalization and approximation concerns, not steps that reduce the output to its inputs by construction. Self-citations such as Feng et al. (2023) for jump harmonic functions and Feng and Crane (2024) as a baseline are contextual and not load-bearing for the central algorithmic claim. Therefore no equation or fitted quantity is equivalent to the claimed result by definition, and the central derivation retains independent mathematical and empirical content.

Axiom & Free-Parameter Ledger

5 free parameters · 6 axioms · 0 invented entities

The method is not parameter-free: accuracy rests on a supervised network plus several hand-set constants (lambda scale, C, k, loss weights). No new physical entities are introduced; the main domain assumptions are smoothness/local-torus approximability and consistent normals, plus the untested omission of area weights.

free parameters (5)
  • Neural network weights = trained on ~12k shapes (ABC + procedural blobs)
    Predicts the six polynomial coefficients per point; SDF accuracy depends on these learned weights, which are optimized against ground-truth SDF/eikonal loss.
  • lambda scale constant = 1000
    Heuristic lambda = 10^3 / D where D is mean distance to 64 nearest neighbors; controls blend locality and is hand-set. Authors show tuning lambda changes quality (Fig. 30).
  • C (exponent precision constant) = 64
    Used in lambda_x = C / sigma_x and R_eval = 2C / lambda; chosen so exp(-C) underflows in single precision.
  • Neighborhood size k = 64
    Fixed k for network input and D computation; hand-selected; affects torus fitting and lambda.
  • Loss weighting and query sampling = equal distance/eikonal weights; 1/3 uniform, 1/3 narrow band, 1/3 cube
    Training hyperparameters; no systematic sweep reported.
axioms (6)
  • standard math Laplace's method asymptotic expansion (Eq. 15) with a unique minimizer x*
    Used to claim that as lambda -> infinity the exponential-weighted average selects the closest-point value; this underpins Eqs. 16-17 and Eq. 1.
  • domain assumption Point cloud is sampled from a smooth-enough surface so each local neighborhood is well approximated by a torus (second-order proxy)
    Justifies fitting tori in Section 4.1; fails at sharp features, large holes, very sparse or noisy sampling (acknowledged in Section 6).
  • domain assumption Input point cloud comes with normals that are (mostly) consistently oriented; torus sign follows normal orientation (Eq. 22)
    Sign of each torus SDF and therefore global sign depend on normals; orientation procedure fixes only partially inconsistent normals (Section 5.3).
  • ad hoc to paper Area weights in the discretized surface integral (Eq. 17) can be omitted without materially biasing the SDF
    Section 4.2: 'we omit them for efficiency. We hypothesize that we do not observe many ill effects' - a stated but untested assumption.
  • ad hoc to paper Open-surface ansatz sign_Omega = sign w in the signed Hopf-Cole transformation
    Appendix A.1 extends the derivation to open Omega by assuming sign_Omega equals sign w; needed for the unified theory but not proven for non-closed surfaces.
  • standard math The torus SDF formula in Eq. 23 (distance to the center circle minus minor radius) is the exact signed distance of a solid torus
    Standard result (Quilez 2025); used for every per-point g_i.

pith-pipeline@v1.3.0-alltime-deepseek · 41125 in / 17889 out tokens · 174744 ms · 2026-08-01T19:28:32.547758+00:00 · methodology

0 comments
read the original abstract

We describe a method for computing signed distance to point clouds that allows fast pointwise evaluation at arbitrary spatial resolution. As input, our method takes a point cloud with normals; as output, it provides an analytical parameterization that allows queries of signed distance to the approximate underlying surface at arbitrary points - simultaneously providing reconstruction and distance. Our key idea is to reconstruct shapes by locally fitting point clouds with tori, which have closed-form signed distance functions. Tori are fitted in a feed-forward manner, using a pre-trained network to output per-point curvature and shift parameters. Importantly, our method does not require costly global optimization or spatial discretization, and is easily parallelizable. Underlying our method is a new theory that unifies signed distance with the classic reconstruction methods of winding numbers and Poisson surface reconstruction. We use our method to compute signed distance to point clouds arising from photogrammetry, meshes, 3D Gaussians, and neural implicits. Our method allows point clouds to be used directly in applications, without explicit surface reconstruction: as examples, we take offsets of point clouds, apply morphological and Boolean operations, and directly visualize offset surfaces using sphere tracing.

Figures

Figures reproduced from arXiv: 2607.16946 by Ioannis Gkioulekas, Keenan Crane, Nicole Feng.

Figure 1
Figure 1. Figure 1: Given a point cloud, our method directly approximates signed [PITH_FULL_IMAGE:figures/full_fig_p001_1.png] view at source ↗
Figure 3
Figure 3. Figure 3: Classic point set methods often use a weighted least squares [PITH_FULL_IMAGE:figures/full_fig_p002_3.png] view at source ↗
Figure 4
Figure 4. Figure 4: As screening 𝜆 goes to 0, the solution 𝑤 to Equation 9 converges to a jump harmonic function describing inside-outside (left). As 𝜆 increases, 𝑤 converges to a signed distance function via a log transformation (right). However, this formula works only for closed geometry and fails for sampled geometry like point clouds (Section 2.3). We instead use Equation 17. We likewise consider a signed eikonal equatio… view at source ↗
Figure 5
Figure 5. Figure 5: In naive convolutional distance formulas (Equation 16), the pa [PITH_FULL_IMAGE:figures/full_fig_p004_5.png] view at source ↗
Figure 6
Figure 6. Figure 6: Regularizing the kernel in convolutional distance formulas (Equa [PITH_FULL_IMAGE:figures/full_fig_p004_6.png] view at source ↗
Figure 7
Figure 7. Figure 7: The accuracy of our method improves with sampling quality. Mean [PITH_FULL_IMAGE:figures/full_fig_p005_7.png] view at source ↗
Figure 10
Figure 10. Figure 10: In 2D, our method would use circles to approximate a 1D curve [PITH_FULL_IMAGE:figures/full_fig_p006_10.png] view at source ↗
Figure 11
Figure 11. Figure 11: Madan and Levin [2022] estimate unsigned distance to a [PITH_FULL_IMAGE:figures/full_fig_p006_11.png] view at source ↗
Figure 12
Figure 12. Figure 12: Our method allows directly visualizing surfaces underlying point [PITH_FULL_IMAGE:figures/full_fig_p007_12.png] view at source ↗
Figure 13
Figure 13. Figure 13: We fit the 𝑖th torus so that its equator passes through the point 𝑄∗ 𝑖 (0, 0) given by the polynomial height function at point p𝑖 . The torus’s major and minor radii are aligned with the principal curvatures and direc￾tions of the polynomial surface (Section 4.1). 1998; Liu et al. 2009; Eberly 2020]; we take advantage of the fact that tori have closed-form, inexpensive SDFs to compute our global SDF appro… view at source ↗
Figure 15
Figure 15. Figure 15: A neural network is applied to each size- [PITH_FULL_IMAGE:figures/full_fig_p009_15.png] view at source ↗
Figure 16
Figure 16. Figure 16: We visualize some reconstructions produced by our method on dense point cloud outputs from COLMAP. Our method yields reasonable [PITH_FULL_IMAGE:figures/full_fig_p010_16.png] view at source ↗
Figure 17
Figure 17. Figure 17: We visualize reconstructions of several shapes used in our evaluation (Section 5.2). Our method tends to give better results on sparse point clouds, [PITH_FULL_IMAGE:figures/full_fig_p011_17.png] view at source ↗
Figure 18
Figure 18. Figure 18: On average, our method has better signed distance accuracy [PITH_FULL_IMAGE:figures/full_fig_p011_18.png] view at source ↗
Figure 20
Figure 20. Figure 20: We show precompute and query times for point clouds of size [PITH_FULL_IMAGE:figures/full_fig_p012_20.png] view at source ↗
Figure 21
Figure 21. Figure 21: We show reconstructions and slices of the SDF resulting from [PITH_FULL_IMAGE:figures/full_fig_p013_21.png] view at source ↗
Figure 23
Figure 23. Figure 23: We apply Boolean operations to two point clouds (self [PITH_FULL_IMAGE:figures/full_fig_p014_23.png] view at source ↗
Figure 26
Figure 26. Figure 26: General implicit functions can be turned into signed distance [PITH_FULL_IMAGE:figures/full_fig_p014_26.png] view at source ↗
Figure 29
Figure 29. Figure 29: We visualize contoured zero level sets and an SDF slice resulting [PITH_FULL_IMAGE:figures/full_fig_p015_29.png] view at source ↗
Figure 28
Figure 28. Figure 28: Our method was not trained on point clouds with large regions [PITH_FULL_IMAGE:figures/full_fig_p015_28.png] view at source ↗
Figure 30
Figure 30. Figure 30: Though we use a simple, fixed heuristic, further tuning [PITH_FULL_IMAGE:figures/full_fig_p016_30.png] view at source ↗
Figure 31
Figure 31. Figure 31: A few of the analytical SDFs used for evaluation in Section 5.2. [PITH_FULL_IMAGE:figures/full_fig_p024_31.png] view at source ↗

discussion (0)

Sign in with ORCID, Apple, or X to comment. Anyone can read and Pith papers without signing in.

Reference graph

Works this paper leans on

297 extracted references · 11 canonical work pages

  1. [1]

    ACM Transactions on Graphics (TOG) , volume=

    Geodesics in heat: A new approach to computing distance based on heat flow , author=. ACM Transactions on Graphics (TOG) , volume=. 2013 , publisher=

  2. [2]

    ACM Trans

    Sharp, Nicholas and Soliman, Yousuf and Crane, Keenan , title =. ACM Trans. Graph. , volume =. 2019 , publisher =

  3. [3]

    The Discrete Geodesic Problem , author=. SIAM J. Comput. , year=

  4. [4]

    and Hoppe, Hugues , title =

    Surazhsky, Vitaly and Surazhsky, Tatiana and Kirsanov, Danil and Gortler, Steven J. and Hoppe, Hugues , title =. ACM Trans. Graph. , month = jul, pages =. 2005 , issue_date =. doi:10.1145/1073204.1073228 , abstract =

  5. [5]

    , author =

    Accurate Computation of Geodesic Distance Fields for Polygonal Curves on Triangle Meshes. , author =. VMV , year =

  6. [6]

    ACM Trans

    Sharp, Nicholas and Crane, Keenan , title =. ACM Trans. Graph. , volume =. 2020 , publisher =

  7. [7]

    Computer Graphics Forum , title =

    Stein, Oded and Wardetzky, Max and Jacobson, Alec and Grinspun, Eitan , year =. Computer Graphics Forum , title =

  8. [8]

    Computer Graphics Forum , volume=

    SSD: Smooth Signed Distance Surface Reconstruction , author=. Computer Graphics Forum , volume=. 2011 , organization=

  9. [9]

    Proceedings of the National Academy of Sciences , volume =

    James A Sethian , title =. Proceedings of the National Academy of Sciences , volume =. 1996 , doi =. https://www.pnas.org/doi/pdf/10.1073/pnas.93.4.1591 , abstract =

  10. [10]

    ACM Trans

    Alec Jacobson and Ladislav Kavan and Olga Sorkine , title =. ACM Trans. Graph. , volume =

  11. [11]

    1990 , publisher=

    Kravtsov, Yury Aleksandrovich and Orlov, Yury Ilich , volume=. 1990 , publisher=

  12. [12]

    2018 , journal =

    Fast Winding Numbers for Soups and Clouds , author =. 2018 , journal =

  13. [13]

    and Cohen-Steiner, D

    Alliez, P. and Cohen-Steiner, D. and Tong, Y. and Desbrun, M. , title =. Proceedings of the Fifth Eurographics Symposium on Geometry Processing , pages =. 2007 , isbn =

  14. [14]

    Computer Graphics Forum , volume =

    Mullen, Patrick and De Goes, Fernando and Desbrun, Mathieu and Cohen-Steiner, David and Alliez, Pierre , title =. Computer Graphics Forum , volume =. doi:10.1111/j.1467-8659.2010.01782.x , year =

  15. [15]

    Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR) , month =

    Park, Jeong Joon and Florence, Peter and Straub, Julian and Newcombe, Richard and Lovegrove, Steven , title =. Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR) , month =

  16. [16]

    CoRR , volume =

    Amos Gropp and Lior Yariv and Niv Haim and Matan Atzmon and Yaron Lipman , title =. CoRR , volume =. 2020 , url =. 2002.10099 , timestamp =

  17. [17]

    1992 , issue_date =

    Hoppe, Hugues and DeRose, Tony and Duchamp, Tom and McDonald, John and Stuetzle, Werner , title =. 1992 , issue_date =. doi:10.1145/142920.134011 , journal =

  18. [18]

    1997 , issn =

    Extraction of Shape Skeletons from Grayscale Images , journal =. 1997 , issn =. doi:10.1006/cviu.1997.0612 , author =

  19. [19]

    1996 , isbn =

    Curless, Brian and Levoy, Marc , title =. 1996 , isbn =. doi:10.1145/237170.237269 , booktitle =

  20. [20]

    Discrete Quadratic Curvature Energies , year =

    Wardetzky, Max and Bergou, Mikl\'. Discrete Quadratic Curvature Energies , year =. Comput. Aided Geom. Des. , month =. doi:10.1016/j.cagd.2007.07.006 , abstract =

  21. [21]

    Identifying Vector Field Singularities Using a Discrete Hodge Decomposition

    Polthier, Konrad and Preu , Eike. Identifying Vector Field Singularities Using a Discrete Hodge Decomposition. Visualization and Mathematics III. 2003

  22. [22]

    ACM Trans

    Stein, Oded and Grinspun, Eitan and Wardetzky, Max and Jacobson, Alec , title =. ACM Trans. Graph. , issue_date =. 2018 , issn =. doi:10.1145/3186564 , acmid =

  23. [23]

    ACM Trans

    Metzer, Gal and Hanocka, Rana and Zorin, Denis and Giryes, Raja and Panozzo, Daniele and Cohen-Or, Daniel , title =. ACM Trans. Graph. , month =. 2021 , issue_date =. doi:10.1145/3450626.3459835 , abstract =

  24. [24]

    Alec Jacobson and Daniele Panozzo and others , note =

  25. [25]

    CGAL User and Reference Manual

    The CGAL Project. CGAL User and Reference Manual

  26. [26]

    Anderson and J

    R. Anderson and J. Andrej and A. Barker and J. Bramwell and J.-S. Camier and J. Cerveny V. Dobrev and Y. Dudouit and A. Fisher and Tz. Kolev and W. Pazner and M. Stowell and V. Tomov and I. Akkerman and J. Dahm and D. Medina and S. Zampini , journal =. doi:10.1016/j.camwa.2020.06.009 , volume =

  27. [27]

    CoRR , volume =

    Matan Atzmon and Yaron Lipman , title =. CoRR , volume =. 2019 , url =. 1911.10414 , timestamp =

  28. [28]

    2020 , eprint=

    SALD: Sign Agnostic Learning with Derivatives , author=. 2020 , eprint=

  29. [29]

    , author=

    A fast marching level set method for monotonically advancing fronts. , author=. proceedings of the National Academy of Sciences , volume=. 1996 , publisher=

  30. [30]

    ACM Trans

    Kazhdan, Michael and Hoppe, Hugues , title =. ACM Trans. Graph. , month =. 2013 , issue_date =. doi:10.1145/2487228.2487237 , abstract =

  31. [31]

    and Beatson, Rick K

    Carr, Jonathan C. and Beatson, Rick K. and Cherrie, J. B. and Mitchell, T. J. and Fright, W Richard and McCallum, Bruce C. and Evans, T. R. , title =. Proceedings of the 28th Annual Conference on Computer Graphics and Interactive Techniques , pages =. 2001 , isbn =. doi:10.1145/383259.383266 , abstract =

  32. [32]

    , title =

    Blinn, James F. , title =. 1982 , issue_date =. doi:10.1145/357306.357310 , journal =

  33. [33]

    Variational implicit surfaces , author=

  34. [35]

    ACM SIGGRAPH 2005 Courses , pages =

    Ohtake, Yutaka and Belyaev, Alexander and Alexa, Marc and Turk, Greg and Seidel, Hans-Peter , title =. ACM SIGGRAPH 2005 Courses , pages =. 2005 , isbn =. doi:10.1145/1198555.1198649 , abstract =

  35. [36]

    A multi-scale approach to 3D scattered data interpolation with compactly supported basis functions , year=

    Ohtake, Yutaka and Belyaev, Alexander and Seidel, Hans-Peter , booktitle=. A multi-scale approach to 3D scattered data interpolation with compactly supported basis functions , year=

  36. [37]

    ACM Trans

    Huang, Zhiyang and Carr, Nathan and Ju, Tao , title =. ACM Trans. Graph. , month =. 2019 , issue_date =. doi:10.1145/3306346.3322994 , abstract =

  37. [38]

    2023 , issue_date =

    Feng, Nicole and Gillespie, Mark and Crane, Keenan , title =. 2023 , issue_date =. doi:10.1145/3592401 , journal =

  38. [40]

    IEEE Transactions on Visualization and Computer Graphics , year =

    Mancinelli, Claudio and Nazzaro, Giacomo and Pellacini, Fabio and Puppo, Enrico , title =. IEEE Transactions on Visualization and Computer Graphics , year =

  39. [41]

    ACM Transactions on Graphics , year =

    Nazzaro, Giacomo and Puppo, Enrico and Pellacini, Fabio , title =. ACM Transactions on Graphics , year =

  40. [42]

    DGtal: Digital Geometry tools and algorithms library , author =

  41. [43]

    VolGallery , author =

  42. [44]

    Heat Kernels and Dirac Operators , year =

    Berline, Nicole and Getzler, Ezra and Vergne, Mich\`. Heat Kernels and Dirac Operators , year =

  43. [45]

    ACM Trans

    Sawhney, Rohan and Crane, Keenan , title =. ACM Trans. Graph. , volume =. 2020 , publisher =

  44. [46]

    ACM Trans

    Sawhney, Rohan and Seyb, Dario and Jarosz, Wojciech and Crane, Keenan , title =. ACM Trans. Graph. , volume =. 2022 , publisher =

  45. [47]

    ACM Trans

    Miller, Bailey and Sawhney, Rohan and Crane, Keenan and Gkioulekas, Ioannis , title =. ACM Trans. Graph. , volume =. 2023 , publisher =

  46. [48]

    ACM Trans

    Sawhney, Rohan and Miller, Bailey and Gkioulekas, Ioannis and Crane, Keenan , title =. ACM Trans. Graph. , volume =. 2023 , publisher =

  47. [49]

    ACM Trans

    A Practical Walk-on-Boundary Method for Boundary Value Problems , author =. ACM Trans. Graph. , month =. 2023 , issue_date =

  48. [50]

    Coifman and St\'

    Ronald R. Coifman and St\'. Diffusion maps , journal =. 2006 , note =. doi:10.1016/j.acha.2006.04.006 , url =

  49. [51]

    Computer Graphics Forum , volume =

    Herholz, Philipp and Alexa, Marc , title =. Computer Graphics Forum , volume =. doi:10.1111/cgf.13607 , year =

  50. [52]

    arXiv e-prints , keywords =

    A Survey of Algorithms for Geodesic Paths and Distances. arXiv e-prints , keywords =

  51. [53]

    ACM Trans

    Gillespie, Mark and Sharp, Nicholas and Crane, Keenan , title =. ACM Trans. Graph. , volume =. 2021 , publisher =

  52. [54]

    ACM Trans

    Liu, Hsueh-Ti Derek and Gillespie, Mark and Chislett, Benjamin and Sharp, Nicholas and Jacobson, Alec and Crane, Keenan , title =. ACM Trans. Graph. , volume =. 2023 , publisher =. doi:10.1145/3592403 , month =

  53. [55]

    Journal of computational physics , volume=

    A variational level set approach to multiphase motion , author=. Journal of computational physics , volume=. 1996 , publisher=

  54. [56]

    ACM SIGGRAPH 2023 Conference Proceedings , articleno =

    Edelstein, Michal and Guillen, Nestor and Solomon, Justin and Ben-Chen, Mirela , title =. ACM SIGGRAPH 2023 Conference Proceedings , articleno =. 2023 , isbn =. doi:10.1145/3588432.3591523 , abstract =

  55. [57]

    doi:10.1145/3592109 , url =

    Ryusuke Sugimoto and Terry Chen and Yiti Jiang and Christopher Batty and Toshiya Hachisuka , title =. doi:10.1145/3592109 , url =

  56. [58]

    2004 , publisher =

    Theory and Practice of Finite Elements , author =. 2004 , publisher =. doi:10.1007/978-1-4757-4355-5 , edition =

  57. [59]

    Linear Subspace Design for Real-Time Shape Deformation , year =

    Wang, Yu and Jacobson, Alec and Barbi. Linear Subspace Design for Real-Time Shape Deformation , year =. ACM Trans. Graph. , month =. doi:10.1145/2766952 , abstract =

  58. [60]

    2015 , title =

    Wang, Yu and Jacobson, Alec and Barbi. 2015 , title =

  59. [61]

    Vega FEM Library

    Jernej Barbi c and Fun Shing Sin and Daniel Schroeder. Vega FEM Library. 2012

  60. [62]

    SSD Surface Reconstruction (Version 3.0) , author =

  61. [63]

    Biharmonic Distance

    Yaron Lipman and Raif Rustamov and Thomas Funkhouser. Biharmonic Distance. ACM Transactions on Graphics. 2010

  62. [65]

    Stochastic Poisson Surface Reconstruction , year =

    Sell. Stochastic Poisson Surface Reconstruction , year =. ACM Trans. Graph. , month =. doi:10.1145/3550454.3555441 , abstract =

  63. [66]

    ACM SIGGRAPH 2016 courses , series =

    De Goes, Fernando and Desbrun, Mathieu and Tong, Yiying , title =. ACM SIGGRAPH 2016 courses , series =. 2016 , publisher =

  64. [67]

    Discrete Differential Operators on Polyhedral Surfaces -- Convergence and Approximation , year =

    Wardetzky, Max , advisor =. Discrete Differential Operators on Polyhedral Surfaces -- Convergence and Approximation , year =

  65. [68]

    ACM Trans

    Liu, Beibei and Tong, Yiying and Goes, Fernando De and Desbrun, Mathieu , title =. ACM Trans. Graph. , month =. 2016 , issue_date =. doi:10.1145/2870629 , abstract =

  66. [69]

    2020 , journal =

    Belyaev, Alexander and Fayolle, Pierre-Alain , title =. 2020 , journal =

  67. [70]

    2020 , eprint=

    Neural Unsigned Distance Fields for Implicit Function Learning , author=. 2020 , eprint=

  68. [71]

    Computer Graphics Forum , volume =

    Bunge, Astrid and Herholz, Philipp and Kazhdan, Misha and Botsch, Mario , title =. Computer Graphics Forum , volume =. doi:10.1111/cgf.13931 , year =

  69. [72]

    Caissard, Thomas and Coeurjolly, David and Lachaud, Jacques-Olivier and Roussillon, Tristan , title =. J. Math. Imaging Vis. , month =. 2019 , issue_date =. doi:10.1007/s10851-018-0839-4 , abstract =

  70. [73]

    A Simple Discrete Calculus for Digital Surfaces , year =

    David Coeurjolly and Jacques-Olivier Lachaud , booktitle =. A Simple Discrete Calculus for Digital Surfaces , year =

  71. [74]

    ACM Trans

    De Goes, Fernando and Butts, Andrew and Desbrun, Mathieu , title =. ACM Trans. Graph. , month =. 2020 , issue_date =. doi:10.1145/3386569.3392389 , abstract =

  72. [75]

    ACM Trans

    de Goes, Fernando and Desbrun, Mathieu and Meyer, Mark and DeRose, Tony , title =. ACM Trans. Graph. , month =. 2016 , issue_date =. doi:10.1145/2897824.2925880 , abstract =

  73. [76]

    Implicit Fairing of Irregular Meshes Using Diffusion and Curvature Flow , year =

    Desbrun, Mathieu and Meyer, Mark and Schr\". Implicit Fairing of Irregular Meshes Using Diffusion and Curvature Flow , year =. Proceedings of the 26th Annual Conference on Computer Graphics and Interactive Techniques , pages =. doi:10.1145/311535.311576 , abstract =

  74. [77]

    arXiv:1602.02481 , year =

    Sungjoon Choi and Qian-Yi Zhou and Stephen Miller and Vladlen Koltun , title =. arXiv:1602.02481 , year =

  75. [78]

    Constructive Solid Geometry on Neural Signed Distance Fields , year =

    Marschner, Zo\". Constructive Solid Geometry on Neural Signed Distance Fields , year =. SIGGRAPH Asia 2023 Conference Papers , articleno =

  76. [79]

    arXiv preprint arXiv:2312.09222 , year=

    Mosaic-SDF for 3D Generative Models , author=. arXiv preprint arXiv:2312.09222 , year=

  77. [80]

    Differentiable Signed Distance Function Rendering , journal =

    Delio Vicini and S\'. Differentiable Signed Distance Function Rendering , journal =. 2022 , month = jul, doi =

  78. [81]

    How to make a blob in 3D? , publisher =

    user484 , howpublished =. How to make a blob in 3D? , publisher =

  79. [82]

    GitHub repository , howpublished =

    Casey Duncan , title =. GitHub repository , howpublished =. 2018 , publisher =

  80. [83]

    3D distance and gradient functions - 2025 , author =

Showing first 80 references.