Nico

Results 19 comments of Nico

I'm so sorry, I totally forgot about this one. :disappointed: Thank you @hankstag for your improvements on the testcase! Is there something left to do?

Which version are you using? ```conda list igl``` Latest version is 2.2.1 from 11 days ago. Before (e.g. version 2.2.0) it was called `l=boundary_loop(f)`: https://github.com/libigl/libigl-python-bindings/blob/2.2.0/src/boundary_loop.cpp

Are you using the *new* python binding? https://github.com/libigl/libigl-python-bindings With those you can work directly with numpy nd-arrays, no need to take care of converting between eigen numpy. For installation instructions...

Hi there, @icraggs thank for providing this embedded C implementation and thanks @Greblys for your improvements. Is there any progress on this specific topic? I do like the idea of...

There seems to be something off with your mesh which causes numerical issues. Meshlab log: > Successfully merged 5980 vertices > > Applied filter Merge Close Vertices in 114 msec...

Hi @bwrsandman the version of Eigen used in ```master```and ```dev``` differs. Set the cmake variable ```LIBIGL_EIGEN_VERSION``` to 3.3.7 should do the trick.

@apullin the main adavantage of your changes is an imporved readability, as far as I understand. Which I think is good. This could also be archived with a simple comment...

Thanks for your reply. Yes you're right, snprintf existed before but wasn't part of C Standard, GCC did the changes to make it compliant with C99 standard. Seems reasonable, I've...

Hi @Haitham96 , looks like an issue with your VS installaltion?! In VS2015 the C runtime library (CRT) has been changed (https://docs.microsoft.com/en-us/cpp/c-runtime-library/crt-library-features). Those missing symboles are functions implemented in CRT....

When generating a project file using cmake you could specify the path to your libigl include dir. i.e. ``` cd libigl-example-project mkdir build cd build cmake .. -DLIBIGL_INCLUDE_DIR="/path/to/custom/libigl/include" ``` or...