1234567891011121314151617 |
- #include <test_common.h>
- #include <igl/copyleft/cgal/CSGTree.h>
- 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::MatrixXd>();
- Eigen::MatrixXi F2 = inter.F();
- ASSERT_EQ(V.rows(), V2.rows());
- ASSERT_EQ(F.rows(), F2.rows());
- }
|