Jérémie Dumas

Results 223 comments of Jérémie Dumas

Please note that unit tests may not enabled in the current `dev` branch, but I have an active PRs #996 that enables them (mostly focused on the CGAL build). The...

If you want a simpler way to setup MKL in a CMake project, you can use the following [mkl.cmake](https://github.com/adobe/lagrange/blob/aeebd56eaaf9d3ca448174501781c8bedaa05b63/cmake/recipes/external/mkl.cmake#L12) file. To use it, simply put this `mkl.cmake` in a folder...

Have you tried the latest `dev` branch? There were some bugs that were fixed recently.

Can you try to build the whole thing and not copy stuff partially?

#1218 has been merged into `dev` 1h ago. Can you try again?

Can you share the mesh that is failing, along with a minimal code to reproduce?

Maybe we should update the module namespaces though. Following the model of glfw/imgui it _should_ be `igl::png::opengl` (with nested folders). But honestly I'd rather avoid deeply nested namespace. I would...

I think a `igl::image` namespace would be nice indeed.

Well, maybe one day we'll add tinyexr to support .exr format, or maybe we'll replace stb with something else. So `igl::image` is both more informative and future-proof. I've never been...

We could rename modules as follows: - `igl::opengl` --> `igl::graphics` - `igl::glfw` --> `igl::viewer` or `igl::application` - `igl::imgui` --> `igl::ui`, `igl::menu` or `igl::widget`. I don't think mixing dependencies and functionalities...