#include #include TEST(CSGTree, extrusion) { Eigen::MatrixXd V; Eigen::MatrixXi F; test_common::load_mesh("extrusion.obj", V, F); igl::copyleft::cgal::CSGTree tree(V, F); igl::copyleft::cgal::CSGTree inter(tree, tree, "i"); // returns error Eigen::MatrixXd V2 = inter.cast_V(); Eigen::MatrixXi F2 = inter.F(); ASSERT_EQ(V.rows(), V2.rows()); ASSERT_EQ(F.rows(), F2.rows()); }