Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cmake/PyiglDependencies.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ include(FetchContent)
FetchContent_Declare(
libigl
GIT_REPOSITORY https://github.com/libigl/libigl.git
GIT_TAG 78015d4da1c6799dfe15659ed35adfb3a5f23ffa
GIT_TAG 7e5512ce71d7394ba965964f66e9a9d91597e767
)
FetchContent_GetProperties(libigl)
FetchContent_MakeAvailable(libigl)
Expand Down
5 changes: 1 addition & 4 deletions src/copyleft/cgal/convex_hull.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,7 @@ npe_arg(v, dense_float, dense_double)
npe_begin_code()

EigenDenseInt g;
// when https://github.com/libigl/libigl/pull/1989 is merged this copy should
// be removed
Eigen::MatrixXd v_copy = v.template cast<double>();
igl::copyleft::cgal::convex_hull(v_copy, g);
igl::copyleft::cgal::convex_hull(v, g);
return npe::move(g);

npe_end_code()