Nicholas Sharp
Nicholas Sharp
For the results in the paper, watertightness was measured by counting the number of edges which have != 2 incident triangles. So for instance percent watertightness might be given by:...
Don't mind me responding to a very old issue :) You can find some implementations here https://github.com/nmwsharp/geometry-central/blob/master/src/surface/intrinsic_geometry_interface.cpp#L586 The terminology and definitions in geometry-central often mirror those in this text: http://www.cs.cmu.edu/~kmcrane/Projects/DDG/paper.pdf
I totally agree @MarkGillespie! I tried to set up the const containers once, but got tripped up in the type system and gave up. It really feels it should be...
I think the problem I was having was that even when the member was `const`, the `[]` operator was not giving const references when it was supposed to. This is...
FYI, see discussion in https://github.com/nmwsharp/geometry-central/issues/88 and commits 13208f0 and 1af6a29 for changes specifically with respect to `inputVertexPositions`. These alias the `VertexPositionGeometry::inputVertexPositions` to point to the same buffer as the inherited...
Thanks for submitting! This seems like a reasonable extension to me. I think the sign inversion should not actually be needed. You might be getting tricked by the Polyscope visualization...
I think `i` is not defined as a constant on all platforms... `std::complex{real_part, imag_part}` always works
Hi! In theory it should be possible to run without CUDA, but I haven't ever done so myself. (as usual, disclaimer that it may be very slow without CUDA) I...
Hm, I think that this may an ["absolute" vs. "relative" values issue](http://polyscope.run/basics/parameters/#scaled-values). If I set the point radius with `pointCloud->setPointRadius(1., false);`, it lines up with a unit sphere as expected....
Actually, I'd like to leave this open as a task to better-document the relative/absolute variables, they're not really clear at all right now. The direct answer is that almost all...