Francis Williams

Results 69 comments of Francis Williams

Ah sorry you said lloyd sampling not poisson disk. Unfortunately, I'm not going to get around to that for a while. If you need it, a pull request would be...

Hey @YWCHEN-ZERO currently there isn't (sorry!) but I actually need this function too for a project so I plan on adding it in when I get time.

I added [functions for mesh curvature](https://github.com/fwilliams/point-cloud-utils#computing-curvature-on-a-mesh). Not sure if it's what you need. For point cloud curvature there are many possible approaches which I'll try and add in the future

This isn't implemented yet but it could be. Leaving this open in case someone wants to implement this in the future.

I'm also interested in this feature. I'm using tinply as a loader in a python library which returns NumPy arrays. I'm often using this loader for massive meshes which take...

Sorry for the confusion! NPE works as a preprocessing step (using a python script) during the build to generate C++ code to handle type conversion from NumPy types (runtime type...

The code for generating the logic used by `npe_matches` is [here](https://github.com/fwilliams/numpyeigen/blob/master/src/codegen_function.py#L970) and the code for parsing a matches statement is [here](https://github.com/fwilliams/numpyeigen/blob/7252ee0d8ae51414bbca3e0445ecfc285930b285/src/codegen_function.py#L436). That said, these may not be so informative. The...

Ah this is a gotcha in NPE: Under the hood, NPE generates a templated function (in this case `callit_unproject_on_line`) with your code. It then generates a switch statement which calls...

@jdumas, AppVeyor tests one particular configuration on Windows. Just because it works there, doesn't mean it works everywhere. I had a colleague on Windows who hit this same problem IIRC....

@evouga It looks like the cmake build command is `cmake -DLIBIGL_BUILD_TESTS=OFF -DLIBIGL_BUILD_TUTORIALS=ON -DLIBIGL_BUILD_PYTHON=OFF -G "Visual Studio 15 2017 Win64" ../` on line 35, so we're is building whatever the default...