mesh_boolean.cpp 31 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441
  1. // This file is part of libigl, a simple c++ geometry processing library.
  2. //
  3. // Copyright (C) 2015 Alec Jacobson <alecjacobson@gmail.com>
  4. // Qingnan Zhou <qnzhou@gmail.com>
  5. //
  6. // This Source Code Form is subject to the terms of the Mozilla Public License
  7. // v. 2.0. If a copy of the MPL was not distributed with this file, You can
  8. // obtain one at http://mozilla.org/MPL/2.0/.
  9. //
  10. #include "mesh_boolean.h"
  11. #include "assign.h"
  12. #include "extract_cells.h"
  13. #include "mesh_boolean_type_to_funcs.h"
  14. #include "propagate_winding_numbers.h"
  15. #include "relabel_small_immersed_cells.h"
  16. #include "remesh_self_intersections.h"
  17. #include "string_to_mesh_boolean_type.h"
  18. #include "../../combine.h"
  19. #include "../../cumsum.h"
  20. #include "../../extract_manifold_patches.h"
  21. #include "../../get_seconds.h"
  22. #include "../../remove_unreferenced.h"
  23. #include "../../resolve_duplicated_faces.h"
  24. #include "../../slice.h"
  25. #include "../../unique_edge_map.h"
  26. #include "../../unique_simplices.h"
  27. #include <CGAL/Exact_predicates_exact_constructions_kernel.h>
  28. #include <algorithm>
  29. //#define MESH_BOOLEAN_TIMING
  30. //#define DOUBLE_CHECK_EXACT_OUTPUT
  31. //#define SMALL_CELL_REMOVAL
  32. template <
  33. typename DerivedVA,
  34. typename DerivedFA,
  35. typename DerivedVB,
  36. typename DerivedFB,
  37. typename DerivedVC,
  38. typename DerivedFC,
  39. typename DerivedJ>
  40. IGL_INLINE bool igl::copyleft::cgal::mesh_boolean(
  41. const Eigen::MatrixBase<DerivedVA > & VA,
  42. const Eigen::MatrixBase<DerivedFA > & FA,
  43. const Eigen::MatrixBase<DerivedVB > & VB,
  44. const Eigen::MatrixBase<DerivedFB > & FB,
  45. const MeshBooleanType & type,
  46. Eigen::PlainObjectBase<DerivedVC > & VC,
  47. Eigen::PlainObjectBase<DerivedFC > & FC,
  48. Eigen::PlainObjectBase<DerivedJ > & J)
  49. {
  50. std::function<int(const int, const int)> keep;
  51. std::function<int(const Eigen::Matrix<int,1,Eigen::Dynamic>) > wind_num_op;
  52. mesh_boolean_type_to_funcs(type,wind_num_op,keep);
  53. return mesh_boolean(VA,FA,VB,FB,wind_num_op,keep,VC,FC,J);
  54. }
  55. template <
  56. typename DerivedVA,
  57. typename DerivedFA,
  58. typename DerivedVB,
  59. typename DerivedFB,
  60. typename DerivedVC,
  61. typename DerivedFC,
  62. typename DerivedJ>
  63. IGL_INLINE bool igl::copyleft::cgal::mesh_boolean(
  64. const Eigen::MatrixBase<DerivedVA > & VA,
  65. const Eigen::MatrixBase<DerivedFA > & FA,
  66. const Eigen::MatrixBase<DerivedVB > & VB,
  67. const Eigen::MatrixBase<DerivedFB > & FB,
  68. const std::string & type_str,
  69. Eigen::PlainObjectBase<DerivedVC > & VC,
  70. Eigen::PlainObjectBase<DerivedFC > & FC,
  71. Eigen::PlainObjectBase<DerivedJ > & J)
  72. {
  73. return mesh_boolean(
  74. VA,FA,VB,FB,string_to_mesh_boolean_type(type_str),VC,FC,J);
  75. }
  76. template <
  77. typename DerivedVA,
  78. typename DerivedFA,
  79. typename DerivedVB,
  80. typename DerivedFB,
  81. typename DerivedVC,
  82. typename DerivedFC,
  83. typename DerivedJ>
  84. IGL_INLINE bool igl::copyleft::cgal::mesh_boolean(
  85. const Eigen::MatrixBase<DerivedVA> & VA,
  86. const Eigen::MatrixBase<DerivedFA> & FA,
  87. const Eigen::MatrixBase<DerivedVB> & VB,
  88. const Eigen::MatrixBase<DerivedFB> & FB,
  89. const std::function<int(const Eigen::Matrix<int,1,Eigen::Dynamic>) >& wind_num_op,
  90. const std::function<int(const int, const int)> & keep,
  91. Eigen::PlainObjectBase<DerivedVC > & VC,
  92. Eigen::PlainObjectBase<DerivedFC > & FC,
  93. Eigen::PlainObjectBase<DerivedJ > & J)
  94. {
  95. // Generate combined mesh (VA,FA,VB,FB) -> (V,F)
  96. Eigen::Matrix<size_t,2,1> sizes(FA.rows(),FB.rows());
  97. // TODO: This is a precision template **bug** that results in failure to
  98. // compile. If DerivedVA::Scalar is double and DerivedVB::Scalar is
  99. // CGAL::Epeck::FT then the following assignment will not compile. This
  100. // implies that VA must have the trumping precision (and a valid assignment
  101. // operator from VB's type).
  102. Eigen::Matrix<typename DerivedVA::Scalar,Eigen::Dynamic,3> VV(VA.rows() + VB.rows(), 3);
  103. DerivedFC FF(FA.rows() + FB.rows(), 3);
  104. // Can't use comma initializer
  105. for(int a = 0;a<VA.rows();a++)
  106. {
  107. for(int d = 0;d<3;d++) VV(a,d) = VA(a,d);
  108. }
  109. for(int b = 0;b<VB.rows();b++)
  110. {
  111. for(int d = 0;d<3;d++) VV(VA.rows()+b,d) = VB(b,d);
  112. }
  113. FF.block(0, 0, FA.rows(), 3) = FA;
  114. // Eigen struggles to assign nothing to nothing and will assert if FB is empty
  115. if(FB.rows() > 0)
  116. {
  117. FF.block(FA.rows(), 0, FB.rows(), 3) = FB.array() + VA.rows();
  118. }
  119. return mesh_boolean(VV,FF,sizes,wind_num_op,keep,VC,FC,J);
  120. }
  121. template <
  122. typename DerivedV,
  123. typename DerivedF,
  124. typename DerivedVC,
  125. typename DerivedFC,
  126. typename DerivedJ>
  127. IGL_INLINE bool igl::copyleft::cgal::mesh_boolean(
  128. const std::vector<DerivedV > & Vlist,
  129. const std::vector<DerivedF > & Flist,
  130. const std::function<int(const Eigen::Matrix<int,1,Eigen::Dynamic>) >& wind_num_op,
  131. const std::function<int(const int, const int)> & keep,
  132. Eigen::PlainObjectBase<DerivedVC > & VC,
  133. Eigen::PlainObjectBase<DerivedFC > & FC,
  134. Eigen::PlainObjectBase<DerivedJ > & J)
  135. {
  136. DerivedV VV;
  137. DerivedF FF;
  138. Eigen::Matrix<size_t,Eigen::Dynamic,1> Vsizes,Fsizes;
  139. igl::combine(Vlist,Flist,VV,FF,Vsizes,Fsizes);
  140. return mesh_boolean(VV,FF,Fsizes,wind_num_op,keep,VC,FC,J);
  141. }
  142. template <
  143. typename DerivedVV,
  144. typename DerivedFF,
  145. typename Derivedsizes,
  146. typename DerivedVC,
  147. typename DerivedFC,
  148. typename DerivedJ>
  149. IGL_INLINE bool igl::copyleft::cgal::mesh_boolean(
  150. const Eigen::MatrixBase<DerivedVV > & VV,
  151. const Eigen::MatrixBase<DerivedFF > & FF,
  152. const Eigen::MatrixBase<Derivedsizes> & sizes,
  153. const std::function<int(const Eigen::Matrix<int,1,Eigen::Dynamic>) >& wind_num_op,
  154. const std::function<int(const int, const int)> & keep,
  155. Eigen::PlainObjectBase<DerivedVC > & VC,
  156. Eigen::PlainObjectBase<DerivedFC > & FC,
  157. Eigen::PlainObjectBase<DerivedJ > & J)
  158. {
  159. #ifdef MESH_BOOLEAN_TIMING
  160. const auto & tictoc = []() -> double
  161. {
  162. static double t_start = igl::get_seconds();
  163. double diff = igl::get_seconds()-t_start;
  164. t_start += diff;
  165. return diff;
  166. };
  167. const auto log_time = [&](const std::string& label) -> void {
  168. std::cout << "mesh_boolean." << label << ": "
  169. << tictoc() << std::endl;
  170. };
  171. tictoc();
  172. #endif
  173. typedef typename DerivedVC::Scalar Scalar;
  174. typedef CGAL::Epeck Kernel;
  175. typedef Kernel::FT ExactScalar;
  176. typedef Eigen::Matrix<Scalar,Eigen::Dynamic,3> MatrixX3S;
  177. typedef Eigen::Matrix<typename DerivedJ::Scalar,Eigen::Dynamic,1> VectorXJ;
  178. typedef Eigen::Matrix<
  179. ExactScalar,
  180. Eigen::Dynamic,
  181. Eigen::Dynamic,
  182. DerivedVC::IsRowMajor> MatrixXES;
  183. MatrixXES V;
  184. DerivedFC F;
  185. VectorXJ CJ;
  186. {
  187. Eigen::VectorXi I;
  188. igl::copyleft::cgal::RemeshSelfIntersectionsParam params;
  189. params.stitch_all = true;
  190. MatrixXES Vr;
  191. DerivedFC Fr;
  192. Eigen::MatrixXi IF;
  193. igl::copyleft::cgal::remesh_self_intersections(
  194. VV, FF, params, Vr, Fr, IF, CJ, I);
  195. assert(I.size() == Vr.rows());
  196. // Merge coinciding vertices into non-manifold vertices.
  197. std::for_each(Fr.data(), Fr.data()+Fr.size(),
  198. [&I](typename DerivedFC::Scalar& a) { a=I[a]; });
  199. // Remove unreferenced vertices.
  200. Eigen::VectorXi UIM;
  201. igl::remove_unreferenced(Vr, Fr, V, F, UIM);
  202. }
  203. #ifdef MESH_BOOLEAN_TIMING
  204. log_time("resolve_self_intersection");
  205. #endif
  206. // Compute edges of (F) --> (E,uE,EMAP,uE2E)
  207. Eigen::MatrixXi E, uE;
  208. Eigen::VectorXi EMAP;
  209. std::vector<std::vector<size_t> > uE2E;
  210. igl::unique_edge_map(F, E, uE, EMAP, uE2E);
  211. // Compute patches (F,EMAP,uE2E) --> (P)
  212. Eigen::VectorXi P;
  213. const size_t num_patches = igl::extract_manifold_patches(F, EMAP, uE2E, P);
  214. #ifdef MESH_BOOLEAN_TIMING
  215. log_time("patch_extraction");
  216. #endif
  217. // Compute cells (V,F,P,E,uE,EMAP) -> (per_patch_cells)
  218. Eigen::MatrixXi per_patch_cells;
  219. const size_t num_cells =
  220. igl::copyleft::cgal::extract_cells(
  221. V, F, P, E, uE, uE2E, EMAP, per_patch_cells);
  222. #ifdef MESH_BOOLEAN_TIMING
  223. log_time("cell_extraction");
  224. #endif
  225. // Compute winding numbers on each side of each facet.
  226. const size_t num_faces = F.rows();
  227. // W(f,:) --> [w1out,w1in,w2out,w2in, ... wnout,wnint] winding numbers above
  228. // and below each face w.r.t. each input mesh, so that W(f,2*i) is the
  229. // winding number above face f w.r.t. input i, and W(f,2*i+1) is the winding
  230. // number below face f w.r.t. input i.
  231. Eigen::MatrixXi W;
  232. // labels(f) = i means that face f comes from mesh i
  233. Eigen::VectorXi labels(num_faces);
  234. // cumulative sizes
  235. Derivedsizes cumsizes;
  236. igl::cumsum(sizes,1,cumsizes);
  237. const size_t num_inputs = sizes.size();
  238. std::transform(
  239. CJ.data(),
  240. CJ.data()+CJ.size(),
  241. labels.data(),
  242. // Determine which input mesh birth face i comes from
  243. [&num_inputs,&cumsizes](int i)->int
  244. {
  245. for(int k = 0;k<num_inputs;k++)
  246. {
  247. if(i<cumsizes(k)) return k;
  248. }
  249. assert(false && "Birth parent index out of range");
  250. return -1;
  251. });
  252. bool valid = true;
  253. if (num_faces > 0)
  254. {
  255. valid = valid &
  256. igl::copyleft::cgal::propagate_winding_numbers(
  257. V, F, uE, uE2E, num_patches, P, num_cells, per_patch_cells, labels, W);
  258. } else
  259. {
  260. W.resize(0, 2*num_inputs);
  261. }
  262. assert((size_t)W.rows() == num_faces);
  263. // If W doesn't have enough columns, pad with zeros
  264. if (W.cols() <= 2*num_inputs)
  265. {
  266. const int old_ncols = W.cols();
  267. W.conservativeResize(num_faces,2*num_inputs);
  268. W.rightCols(2*num_inputs-old_ncols).setConstant(0);
  269. }
  270. assert((size_t)W.cols() == 2*num_inputs);
  271. #ifdef MESH_BOOLEAN_TIMING
  272. log_time("propagate_input_winding_number");
  273. #endif
  274. // Compute resulting winding number.
  275. Eigen::MatrixXi Wr(num_faces, 2);
  276. for (size_t i=0; i<num_faces; i++)
  277. {
  278. // Winding number vectors above and below
  279. Eigen::RowVectorXi w_out(1,num_inputs), w_in(1,num_inputs);
  280. for(size_t k =0;k<num_inputs;k++)
  281. {
  282. w_out(k) = W(i,2*k+0);
  283. w_in(k) = W(i,2*k+1);
  284. }
  285. Wr(i,0) = wind_num_op(w_out);
  286. Wr(i,1) = wind_num_op(w_in);
  287. }
  288. #ifdef MESH_BOOLEAN_TIMING
  289. log_time("compute_output_winding_number");
  290. #endif
  291. #ifdef SMALL_CELL_REMOVAL
  292. igl::copyleft::cgal::relabel_small_immersed_cells(
  293. V, F, num_patches, P, num_cells, per_patch_cells, 1e-3, Wr);
  294. #endif
  295. // Extract boundary separating inside from outside.
  296. auto index_to_signed_index = [&](size_t i, bool ori) -> int
  297. {
  298. return (i+1)*(ori?1:-1);
  299. };
  300. //auto signed_index_to_index = [&](int i) -> size_t {
  301. // return abs(i) - 1;
  302. //};
  303. std::vector<int> selected;
  304. for(size_t i=0; i<num_faces; i++)
  305. {
  306. auto should_keep = keep(Wr(i,0), Wr(i,1));
  307. if (should_keep > 0)
  308. {
  309. selected.push_back(index_to_signed_index(i, true));
  310. } else if (should_keep < 0)
  311. {
  312. selected.push_back(index_to_signed_index(i, false));
  313. }
  314. }
  315. const size_t num_selected = selected.size();
  316. DerivedFC kept_faces(num_selected, 3);
  317. DerivedJ kept_face_indices(num_selected, 1);
  318. for (size_t i=0; i<num_selected; i++)
  319. {
  320. size_t idx = abs(selected[i]) - 1;
  321. if (selected[i] > 0)
  322. {
  323. kept_faces.row(i) = F.row(idx);
  324. } else
  325. {
  326. kept_faces.row(i) = F.row(idx).reverse();
  327. }
  328. kept_face_indices(i, 0) = CJ[idx];
  329. }
  330. #ifdef MESH_BOOLEAN_TIMING
  331. log_time("extract_output");
  332. #endif
  333. // Finally, remove duplicated faces and unreferenced vertices.
  334. {
  335. DerivedFC G;
  336. DerivedJ JJ;
  337. igl::resolve_duplicated_faces(kept_faces, G, JJ);
  338. igl::slice(kept_face_indices, JJ, 1, J);
  339. #ifdef DOUBLE_CHECK_EXACT_OUTPUT
  340. {
  341. // Sanity check on exact output.
  342. igl::copyleft::cgal::RemeshSelfIntersectionsParam params;
  343. params.detect_only = true;
  344. params.first_only = true;
  345. MatrixXES dummy_VV;
  346. DerivedFC dummy_FF, dummy_IF;
  347. Eigen::VectorXi dummy_J, dummy_IM;
  348. igl::copyleft::cgal::SelfIntersectMesh<
  349. Kernel,
  350. MatrixXES, DerivedFC,
  351. MatrixXES, DerivedFC,
  352. DerivedFC,
  353. Eigen::VectorXi,
  354. Eigen::VectorXi
  355. > checker(V, G, params,
  356. dummy_VV, dummy_FF, dummy_IF, dummy_J, dummy_IM);
  357. if (checker.count != 0)
  358. {
  359. throw "Self-intersection not fully resolved.";
  360. }
  361. }
  362. #endif
  363. MatrixX3S Vs;
  364. assign(V,Vs);
  365. Eigen::VectorXi newIM;
  366. igl::remove_unreferenced(Vs,G,VC,FC,newIM);
  367. }
  368. #ifdef MESH_BOOLEAN_TIMING
  369. log_time("clean_up");
  370. #endif
  371. return valid;
  372. }
  373. template <
  374. typename DerivedVA,
  375. typename DerivedFA,
  376. typename DerivedVB,
  377. typename DerivedFB,
  378. typename DerivedVC,
  379. typename DerivedFC>
  380. IGL_INLINE bool igl::copyleft::cgal::mesh_boolean(
  381. const Eigen::MatrixBase<DerivedVA > & VA,
  382. const Eigen::MatrixBase<DerivedFA > & FA,
  383. const Eigen::MatrixBase<DerivedVB > & VB,
  384. const Eigen::MatrixBase<DerivedFB > & FB,
  385. const MeshBooleanType & type,
  386. Eigen::PlainObjectBase<DerivedVC > & VC,
  387. Eigen::PlainObjectBase<DerivedFC > & FC)
  388. {
  389. Eigen::Matrix<typename DerivedFC::Index, Eigen::Dynamic,1> J;
  390. return igl::copyleft::cgal::mesh_boolean(VA,FA,VB,FB,type,VC,FC,J);
  391. }
  392. #ifdef IGL_STATIC_LIBRARY
  393. // Explicit template instantiation
  394. // generated by autoexplicit.sh
  395. template bool igl::copyleft::cgal::mesh_boolean<Eigen::Matrix<CGAL::Lazy_exact_nt<CGAL::Gmpq>, 8, 3, 0, 8, 3>, Eigen::Matrix<int, 12, 3, 0, 12, 3>, Eigen::Matrix<double, -1, 3, 1, -1, 3>, Eigen::Matrix<int, -1, 3, 1, -1, 3>, Eigen::Matrix<CGAL::Lazy_exact_nt<CGAL::Gmpq>, -1, -1, 1, -1, -1>, Eigen::Matrix<int, -1, -1, 0, -1, -1>, Eigen::Matrix<int, -1, 1, 0, -1, 1> >(Eigen::MatrixBase<Eigen::Matrix<CGAL::Lazy_exact_nt<CGAL::Gmpq>, 8, 3, 0, 8, 3> > const&, Eigen::MatrixBase<Eigen::Matrix<int, 12, 3, 0, 12, 3> > const&, Eigen::MatrixBase<Eigen::Matrix<double, -1, 3, 1, -1, 3> > const&, Eigen::MatrixBase<Eigen::Matrix<int, -1, 3, 1, -1, 3> > const&, igl::MeshBooleanType const&, Eigen::PlainObjectBase<Eigen::Matrix<CGAL::Lazy_exact_nt<CGAL::Gmpq>, -1, -1, 1, -1, -1> >&, Eigen::PlainObjectBase<Eigen::Matrix<int, -1, -1, 0, -1, -1> >&, Eigen::PlainObjectBase<Eigen::Matrix<int, -1, 1, 0, -1, 1> >&);
  396. // generated by autoexplicit.sh
  397. template bool igl::copyleft::cgal::mesh_boolean<Eigen::Matrix<CGAL::Lazy_exact_nt<CGAL::Gmpq>, -1, -1, 1, -1, -1>, Eigen::Matrix<int, -1, -1, 0, -1, -1>, Eigen::Matrix<CGAL::Lazy_exact_nt<CGAL::Gmpq>, -1, -1, 1, -1, -1>, Eigen::Matrix<int, -1, -1, 0, -1, -1>, Eigen::Matrix<double, -1, 3, 1, -1, 3>, Eigen::Matrix<int, -1, 3, 1, -1, 3>, Eigen::Matrix<int, -1, 1, 0, -1, 1> >(Eigen::MatrixBase<Eigen::Matrix<CGAL::Lazy_exact_nt<CGAL::Gmpq>, -1, -1, 1, -1, -1> > const&, Eigen::MatrixBase<Eigen::Matrix<int, -1, -1, 0, -1, -1> > const&, Eigen::MatrixBase<Eigen::Matrix<CGAL::Lazy_exact_nt<CGAL::Gmpq>, -1, -1, 1, -1, -1> > const&, Eigen::MatrixBase<Eigen::Matrix<int, -1, -1, 0, -1, -1> > const&, igl::MeshBooleanType const&, Eigen::PlainObjectBase<Eigen::Matrix<double, -1, 3, 1, -1, 3> >&, Eigen::PlainObjectBase<Eigen::Matrix<int, -1, 3, 1, -1, 3> >&, Eigen::PlainObjectBase<Eigen::Matrix<int, -1, 1, 0, -1, 1> >&);
  398. // generated by autoexplicit.sh
  399. template bool igl::copyleft::cgal::mesh_boolean<Eigen::Matrix<CGAL::Lazy_exact_nt<CGAL::Gmpq>, -1, -1, 1, -1, -1>, Eigen::Matrix<int, -1, -1, 0, -1, -1>, Eigen::Matrix<CGAL::Lazy_exact_nt<CGAL::Gmpq>, -1, -1, 1, -1, -1>, Eigen::Matrix<int, -1, -1, 0, -1, -1>, Eigen::Matrix<float, -1, 3, 1, -1, 3>, Eigen::Matrix<int, -1, 3, 1, -1, 3>, Eigen::Matrix<int, -1, 1, 0, -1, 1> >(Eigen::MatrixBase<Eigen::Matrix<CGAL::Lazy_exact_nt<CGAL::Gmpq>, -1, -1, 1, -1, -1> > const&, Eigen::MatrixBase<Eigen::Matrix<int, -1, -1, 0, -1, -1> > const&, Eigen::MatrixBase<Eigen::Matrix<CGAL::Lazy_exact_nt<CGAL::Gmpq>, -1, -1, 1, -1, -1> > const&, Eigen::MatrixBase<Eigen::Matrix<int, -1, -1, 0, -1, -1> > const&, igl::MeshBooleanType const&, Eigen::PlainObjectBase<Eigen::Matrix<float, -1, 3, 1, -1, 3> >&, Eigen::PlainObjectBase<Eigen::Matrix<int, -1, 3, 1, -1, 3> >&, Eigen::PlainObjectBase<Eigen::Matrix<int, -1, 1, 0, -1, 1> >&);
  400. // generated by autoexplicit.sh
  401. template bool igl::copyleft::cgal::mesh_boolean<Eigen::Matrix<CGAL::Lazy_exact_nt<CGAL::Gmpq>, -1, -1, 1, -1, -1>, Eigen::Matrix<int, -1, -1, 0, -1, -1>, Eigen::Matrix<CGAL::Lazy_exact_nt<CGAL::Gmpq>, -1, -1, 0, -1, -1>, Eigen::Matrix<int, -1, -1, 0, -1, -1>, Eigen::Matrix<CGAL::Lazy_exact_nt<CGAL::Gmpq>, -1, -1, 1, -1, -1>, Eigen::Matrix<int, -1, -1, 0, -1, -1>, Eigen::Matrix<int, -1, 1, 0, -1, 1> >(Eigen::MatrixBase<Eigen::Matrix<CGAL::Lazy_exact_nt<CGAL::Gmpq>, -1, -1, 1, -1, -1> > const&, Eigen::MatrixBase<Eigen::Matrix<int, -1, -1, 0, -1, -1> > const&, Eigen::MatrixBase<Eigen::Matrix<CGAL::Lazy_exact_nt<CGAL::Gmpq>, -1, -1, 0, -1, -1> > const&, Eigen::MatrixBase<Eigen::Matrix<int, -1, -1, 0, -1, -1> > const&, igl::MeshBooleanType const&, Eigen::PlainObjectBase<Eigen::Matrix<CGAL::Lazy_exact_nt<CGAL::Gmpq>, -1, -1, 1, -1, -1> >&, Eigen::PlainObjectBase<Eigen::Matrix<int, -1, -1, 0, -1, -1> >&, Eigen::PlainObjectBase<Eigen::Matrix<int, -1, 1, 0, -1, 1> >&);
  402. // generated by autoexplicit.sh
  403. template bool igl::copyleft::cgal::mesh_boolean<Eigen::Matrix<CGAL::Lazy_exact_nt<CGAL::Gmpq>, -1, -1, 1, -1, -1>, Eigen::Matrix<int, -1, -1, 0, -1, -1>, Eigen::Matrix<float, -1, -1, 0, -1, -1>, Eigen::Matrix<int, -1, -1, 0, -1, -1>, Eigen::Matrix<CGAL::Lazy_exact_nt<CGAL::Gmpq>, -1, -1, 1, -1, -1>, Eigen::Matrix<int, -1, -1, 0, -1, -1>, Eigen::Matrix<int, -1, 1, 0, -1, 1> >(Eigen::MatrixBase<Eigen::Matrix<CGAL::Lazy_exact_nt<CGAL::Gmpq>, -1, -1, 1, -1, -1> > const&, Eigen::MatrixBase<Eigen::Matrix<int, -1, -1, 0, -1, -1> > const&, Eigen::MatrixBase<Eigen::Matrix<float, -1, -1, 0, -1, -1> > const&, Eigen::MatrixBase<Eigen::Matrix<int, -1, -1, 0, -1, -1> > const&, igl::MeshBooleanType const&, Eigen::PlainObjectBase<Eigen::Matrix<CGAL::Lazy_exact_nt<CGAL::Gmpq>, -1, -1, 1, -1, -1> >&, Eigen::PlainObjectBase<Eigen::Matrix<int, -1, -1, 0, -1, -1> >&, Eigen::PlainObjectBase<Eigen::Matrix<int, -1, 1, 0, -1, 1> >&);
  404. // generated by autoexplicit.sh
  405. template bool igl::copyleft::cgal::mesh_boolean<Eigen::Matrix<CGAL::Lazy_exact_nt<CGAL::Gmpq>, 8, 3, 0, 8, 3>, Eigen::Matrix<int, 12, 3, 0, 12, 3>, Eigen::Matrix<float, -1, 3, 1, -1, 3>, Eigen::Matrix<int, -1, 3, 1, -1, 3>, Eigen::Matrix<CGAL::Lazy_exact_nt<CGAL::Gmpq>, -1, -1, 1, -1, -1>, Eigen::Matrix<int, -1, -1, 0, -1, -1>, Eigen::Matrix<int, -1, 1, 0, -1, 1> >(Eigen::MatrixBase<Eigen::Matrix<CGAL::Lazy_exact_nt<CGAL::Gmpq>, 8, 3, 0, 8, 3> > const&, Eigen::MatrixBase<Eigen::Matrix<int, 12, 3, 0, 12, 3> > const&, Eigen::MatrixBase<Eigen::Matrix<float, -1, 3, 1, -1, 3> > const&, Eigen::MatrixBase<Eigen::Matrix<int, -1, 3, 1, -1, 3> > const&, igl::MeshBooleanType const&, Eigen::PlainObjectBase<Eigen::Matrix<CGAL::Lazy_exact_nt<CGAL::Gmpq>, -1, -1, 1, -1, -1> >&, Eigen::PlainObjectBase<Eigen::Matrix<int, -1, -1, 0, -1, -1> >&, Eigen::PlainObjectBase<Eigen::Matrix<int, -1, 1, 0, -1, 1> >&);
  406. template bool igl::copyleft::cgal::mesh_boolean<Eigen::Matrix<CGAL::Lazy_exact_nt<CGAL::Gmpq>, -1, -1, 1, -1, -1>, Eigen::Matrix<int, -1, -1, 0, -1, -1>, Eigen::Matrix<CGAL::Lazy_exact_nt<CGAL::Gmpq>, -1, -1, 1, -1, -1>, Eigen::Matrix<int, -1, -1, 0, -1, -1>, Eigen::Matrix<float, -1, 3, 1, -1, 3>, Eigen::Matrix<int, -1, -1, 0, -1, -1>, Eigen::Matrix<int, -1, 1, 0, -1, 1> >(Eigen::MatrixBase<Eigen::Matrix<CGAL::Lazy_exact_nt<CGAL::Gmpq>, -1, -1, 1, -1, -1> > const&, Eigen::MatrixBase<Eigen::Matrix<int, -1, -1, 0, -1, -1> > const&, Eigen::MatrixBase<Eigen::Matrix<CGAL::Lazy_exact_nt<CGAL::Gmpq>, -1, -1, 1, -1, -1> > const&, Eigen::MatrixBase<Eigen::Matrix<int, -1, -1, 0, -1, -1> > const&, igl::MeshBooleanType const&, Eigen::PlainObjectBase<Eigen::Matrix<float, -1, 3, 1, -1, 3> >&, Eigen::PlainObjectBase<Eigen::Matrix<int, -1, -1, 0, -1, -1> >&, Eigen::PlainObjectBase<Eigen::Matrix<int, -1, 1, 0, -1, 1> >&);
  407. template bool igl::copyleft::cgal::mesh_boolean<Eigen::Matrix<CGAL::Lazy_exact_nt<CGAL::Gmpq>, 8, 3, 0, 8, 3>, Eigen::Matrix<int, 12, 3, 0, 12, 3>, Eigen::Matrix<CGAL::Lazy_exact_nt<CGAL::Gmpq>, -1, 3, 0, -1, 3>, Eigen::Matrix<int, -1, -1, 0, -1, -1>, Eigen::Matrix<CGAL::Lazy_exact_nt<CGAL::Gmpq>, -1, 3, 0, -1, 3>, Eigen::Matrix<int, -1, -1, 0, -1, -1>, Eigen::Matrix<int, -1, 1, 0, -1, 1> >(Eigen::MatrixBase<Eigen::Matrix<CGAL::Lazy_exact_nt<CGAL::Gmpq>, 8, 3, 0, 8, 3> > const&, Eigen::MatrixBase<Eigen::Matrix<int, 12, 3, 0, 12, 3> > const&, Eigen::MatrixBase<Eigen::Matrix<CGAL::Lazy_exact_nt<CGAL::Gmpq>, -1, 3, 0, -1, 3> > const&, Eigen::MatrixBase<Eigen::Matrix<int, -1, -1, 0, -1, -1> > const&, igl::MeshBooleanType const&, Eigen::PlainObjectBase<Eigen::Matrix<CGAL::Lazy_exact_nt<CGAL::Gmpq>, -1, 3, 0, -1, 3> >&, Eigen::PlainObjectBase<Eigen::Matrix<int, -1, -1, 0, -1, -1> >&, Eigen::PlainObjectBase<Eigen::Matrix<int, -1, 1, 0, -1, 1> >&);
  408. template bool igl::copyleft::cgal::mesh_boolean<Eigen::Matrix<CGAL::Lazy_exact_nt<CGAL::Gmpq>, 8, 3, 0, 8, 3>, Eigen::Matrix<int, 12, 3, 0, 12, 3>, Eigen::Matrix<CGAL::Lazy_exact_nt<CGAL::Gmpq>, -1, 4, 0, -1, 4>, Eigen::Matrix<int, -1, -1, 0, -1, -1>, Eigen::Matrix<CGAL::Lazy_exact_nt<CGAL::Gmpq>, -1, 4, 0, -1, 4>, Eigen::Matrix<int, -1, -1, 0, -1, -1>, Eigen::Matrix<int, -1, 1, 0, -1, 1> >(Eigen::MatrixBase<Eigen::Matrix<CGAL::Lazy_exact_nt<CGAL::Gmpq>, 8, 3, 0, 8, 3> > const&, Eigen::MatrixBase<Eigen::Matrix<int, 12, 3, 0, 12, 3> > const&, Eigen::MatrixBase<Eigen::Matrix<CGAL::Lazy_exact_nt<CGAL::Gmpq>, -1, 4, 0, -1, 4> > const&, Eigen::MatrixBase<Eigen::Matrix<int, -1, -1, 0, -1, -1> > const&, igl::MeshBooleanType const&, Eigen::PlainObjectBase<Eigen::Matrix<CGAL::Lazy_exact_nt<CGAL::Gmpq>, -1, 4, 0, -1, 4> >&, Eigen::PlainObjectBase<Eigen::Matrix<int, -1, -1, 0, -1, -1> >&, Eigen::PlainObjectBase<Eigen::Matrix<int, -1, 1, 0, -1, 1> >&);
  409. template bool igl::copyleft::cgal::mesh_boolean<Eigen::Matrix<double, -1, -1, 0, -1, -1>, Eigen::Matrix<int, -1, -1, 0, -1, -1>, Eigen::Matrix<double, -1, -1, 0, -1, -1>, Eigen::Matrix<int, -1, -1, 0, -1, -1>, Eigen::Matrix<double, -1, -1, 0, -1, -1>, Eigen::Matrix<int, -1, -1, 0, -1, -1> >(Eigen::MatrixBase<Eigen::Matrix<double, -1, -1, 0, -1, -1> > const&, Eigen::MatrixBase<Eigen::Matrix<int, -1, -1, 0, -1, -1> > const&, Eigen::MatrixBase<Eigen::Matrix<double, -1, -1, 0, -1, -1> > const&, Eigen::MatrixBase<Eigen::Matrix<int, -1, -1, 0, -1, -1> > const&, igl::MeshBooleanType const&, Eigen::PlainObjectBase<Eigen::Matrix<double, -1, -1, 0, -1, -1> >&, Eigen::PlainObjectBase<Eigen::Matrix<int, -1, -1, 0, -1, -1> >&);
  410. template bool igl::copyleft::cgal::mesh_boolean<Eigen::Matrix<CGAL::Lazy_exact_nt<CGAL::Gmpq>, -1, 3, 0, -1, 3>, Eigen::Matrix<int, -1, -1, 0, -1, -1>, Eigen::Matrix<CGAL::Lazy_exact_nt<CGAL::Gmpq>, -1, 3, 0, -1, 3>, Eigen::Matrix<int, -1, -1, 0, -1, -1>, Eigen::Matrix<CGAL::Lazy_exact_nt<CGAL::Gmpq>, -1, 3, 0, -1, 3>, Eigen::Matrix<int, -1, -1, 0, -1, -1>, Eigen::Matrix<long, -1, 1, 0, -1, 1> >(Eigen::MatrixBase<Eigen::Matrix<CGAL::Lazy_exact_nt<CGAL::Gmpq>, -1, 3, 0, -1, 3> > const&, Eigen::MatrixBase<Eigen::Matrix<int, -1, -1, 0, -1, -1> > const&, Eigen::MatrixBase<Eigen::Matrix<CGAL::Lazy_exact_nt<CGAL::Gmpq>, -1, 3, 0, -1, 3> > const&, Eigen::MatrixBase<Eigen::Matrix<int, -1, -1, 0, -1, -1> > const&, igl::MeshBooleanType const&, Eigen::PlainObjectBase<Eigen::Matrix<CGAL::Lazy_exact_nt<CGAL::Gmpq>, -1, 3, 0, -1, 3> >&, Eigen::PlainObjectBase<Eigen::Matrix<int, -1, -1, 0, -1, -1> >&, Eigen::PlainObjectBase<Eigen::Matrix<long, -1, 1, 0, -1, 1> >&);
  411. template bool igl::copyleft::cgal::mesh_boolean<Eigen::Matrix<double, -1, -1, 0, -1, -1>, Eigen::Matrix<int, -1, -1, 0, -1, -1>, Eigen::Matrix<double, -1, -1, 0, -1, -1>, Eigen::Matrix<int, -1, -1, 0, -1, -1>, Eigen::Matrix<double, -1, -1, 0, -1, -1>, Eigen::Matrix<int, -1, -1, 0, -1, -1>, Eigen::Matrix<int, -1, 1, 0, -1, 1> >(Eigen::MatrixBase<Eigen::Matrix<double, -1, -1, 0, -1, -1> > const&, Eigen::MatrixBase<Eigen::Matrix<int, -1, -1, 0, -1, -1> > const&, Eigen::MatrixBase<Eigen::Matrix<double, -1, -1, 0, -1, -1> > const&, Eigen::MatrixBase<Eigen::Matrix<int, -1, -1, 0, -1, -1> > const&, igl::MeshBooleanType const&, Eigen::PlainObjectBase<Eigen::Matrix<double, -1, -1, 0, -1, -1> >&, Eigen::PlainObjectBase<Eigen::Matrix<int, -1, -1, 0, -1, -1> >&, Eigen::PlainObjectBase<Eigen::Matrix<int, -1, 1, 0, -1, 1> >&);
  412. template bool igl::copyleft::cgal::mesh_boolean<Eigen::Matrix<double, -1, -1, 0, -1, -1>, Eigen::Matrix<int, -1, -1, 0, -1, -1>, Eigen::Matrix<double, -1, -1, 0, -1, -1>, Eigen::Matrix<int, -1, -1, 0, -1, -1>, Eigen::Matrix<double, -1, -1, 0, -1, -1>, Eigen::Matrix<int, -1, -1, 0, -1, -1>, Eigen::Matrix<int, -1, -1, 0, -1, -1> >(Eigen::MatrixBase<Eigen::Matrix<double, -1, -1, 0, -1, -1> > const&, Eigen::MatrixBase<Eigen::Matrix<int, -1, -1, 0, -1, -1> > const&, Eigen::MatrixBase<Eigen::Matrix<double, -1, -1, 0, -1, -1> > const&, Eigen::MatrixBase<Eigen::Matrix<int, -1, -1, 0, -1, -1> > const&, std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, Eigen::PlainObjectBase<Eigen::Matrix<double, -1, -1, 0, -1, -1> >&, Eigen::PlainObjectBase<Eigen::Matrix<int, -1, -1, 0, -1, -1> >&, Eigen::PlainObjectBase<Eigen::Matrix<int, -1, -1, 0, -1, -1> >&);
  413. template bool igl::copyleft::cgal::mesh_boolean<Eigen::Matrix<double, -1, -1, 0, -1, -1>, Eigen::Matrix<int, -1, -1, 0, -1, -1>, Eigen::Matrix<double, -1, -1, 0, -1, -1>, Eigen::Matrix<int, -1, -1, 0, -1, -1>, Eigen::Matrix<double, -1, -1, 0, -1, -1>, Eigen::Matrix<int, -1, -1, 0, -1, -1>, Eigen::Matrix<int, -1, 1, 0, -1, 1> >(Eigen::MatrixBase<Eigen::Matrix<double, -1, -1, 0, -1, -1> > const&, Eigen::MatrixBase<Eigen::Matrix<int, -1, -1, 0, -1, -1> > const&, Eigen::MatrixBase<Eigen::Matrix<double, -1, -1, 0, -1, -1> > const&, Eigen::MatrixBase<Eigen::Matrix<int, -1, -1, 0, -1, -1> > const&, std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, Eigen::PlainObjectBase<Eigen::Matrix<double, -1, -1, 0, -1, -1> >&, Eigen::PlainObjectBase<Eigen::Matrix<int, -1, -1, 0, -1, -1> >&, Eigen::PlainObjectBase<Eigen::Matrix<int, -1, 1, 0, -1, 1> >&);
  414. template bool igl::copyleft::cgal::mesh_boolean<Eigen::Matrix<CGAL::Lazy_exact_nt<CGAL::Gmpq>, -1, 3, 0, -1, 3>, Eigen::Matrix<int, -1, -1, 0, -1, -1>, Eigen::Matrix<double, -1, -1, 0, -1, -1>, Eigen::Matrix<int, -1, -1, 0, -1, -1>, Eigen::Matrix<CGAL::Lazy_exact_nt<CGAL::Gmpq>, -1, 3, 0, -1, 3>, Eigen::Matrix<int, -1, -1, 0, -1, -1>, Eigen::Matrix<int, -1, 1, 0, -1, 1> >(Eigen::MatrixBase<Eigen::Matrix<CGAL::Lazy_exact_nt<CGAL::Gmpq>, -1, 3, 0, -1, 3> > const&, Eigen::MatrixBase<Eigen::Matrix<int, -1, -1, 0, -1, -1> > const&, Eigen::MatrixBase<Eigen::Matrix<double, -1, -1, 0, -1, -1> > const&, Eigen::MatrixBase<Eigen::Matrix<int, -1, -1, 0, -1, -1> > const&, std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, Eigen::PlainObjectBase<Eigen::Matrix<CGAL::Lazy_exact_nt<CGAL::Gmpq>, -1, 3, 0, -1, 3> >&, Eigen::PlainObjectBase<Eigen::Matrix<int, -1, -1, 0, -1, -1> >&, Eigen::PlainObjectBase<Eigen::Matrix<int, -1, 1, 0, -1, 1> >&);
  415. template bool igl::copyleft::cgal::mesh_boolean<Eigen::Matrix<CGAL::Lazy_exact_nt<CGAL::Gmpq>, -1, 3, 0, -1, 3>, Eigen::Matrix<int, -1, -1, 0, -1, -1>, Eigen::Matrix<CGAL::Lazy_exact_nt<CGAL::Gmpq>, -1, 3, 0, -1, 3>, Eigen::Matrix<int, -1, -1, 0, -1, -1>, Eigen::Matrix<CGAL::Lazy_exact_nt<CGAL::Gmpq>, -1, 3, 0, -1, 3>, Eigen::Matrix<int, -1, -1, 0, -1, -1>, Eigen::Matrix<int, -1, 1, 0, -1, 1> >(Eigen::MatrixBase<Eigen::Matrix<CGAL::Lazy_exact_nt<CGAL::Gmpq>, -1, 3, 0, -1, 3> > const&, Eigen::MatrixBase<Eigen::Matrix<int, -1, -1, 0, -1, -1> > const&, Eigen::MatrixBase<Eigen::Matrix<CGAL::Lazy_exact_nt<CGAL::Gmpq>, -1, 3, 0, -1, 3> > const&, Eigen::MatrixBase<Eigen::Matrix<int, -1, -1, 0, -1, -1> > const&, std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, Eigen::PlainObjectBase<Eigen::Matrix<CGAL::Lazy_exact_nt<CGAL::Gmpq>, -1, 3, 0, -1, 3> >&, Eigen::PlainObjectBase<Eigen::Matrix<int, -1, -1, 0, -1, -1> >&, Eigen::PlainObjectBase<Eigen::Matrix<int, -1, 1, 0, -1, 1> >&);
  416. template bool igl::copyleft::cgal::mesh_boolean<Eigen::Matrix<CGAL::Lazy_exact_nt<CGAL::Gmpq>, 8, 3, 0, 8, 3>, Eigen::Matrix<int, 12, 3, 0, 12, 3>, Eigen::Matrix<double, -1, -1, 0, -1, -1>, Eigen::Matrix<int, -1, -1, 0, -1, -1>, Eigen::Matrix<double, -1, -1, 0, -1, -1>, Eigen::Matrix<int, -1, -1, 0, -1, -1>, Eigen::Matrix<int, -1, 1, 0, -1, 1> >(Eigen::MatrixBase<Eigen::Matrix<CGAL::Lazy_exact_nt<CGAL::Gmpq>, 8, 3, 0, 8, 3> > const&, Eigen::MatrixBase<Eigen::Matrix<int, 12, 3, 0, 12, 3> > const&, Eigen::MatrixBase<Eigen::Matrix<double, -1, -1, 0, -1, -1> > const&, Eigen::MatrixBase<Eigen::Matrix<int, -1, -1, 0, -1, -1> > const&, igl::MeshBooleanType const&, Eigen::PlainObjectBase<Eigen::Matrix<double, -1, -1, 0, -1, -1> >&, Eigen::PlainObjectBase<Eigen::Matrix<int, -1, -1, 0, -1, -1> >&, Eigen::PlainObjectBase<Eigen::Matrix<int, -1, 1, 0, -1, 1> >&);
  417. template bool igl::copyleft::cgal::mesh_boolean<Eigen::Matrix<double, -1, -1, 0, -1, -1>, Eigen::Matrix<int, -1, -1, 0, -1, -1>, Eigen::Matrix<double, -1, -1, 0, -1, -1>, Eigen::Matrix<int, -1, -1, 0, -1, -1>, Eigen::Matrix<double, -1, -1, 0, -1, -1>, Eigen::Matrix<int, -1, -1, 0, -1, -1>, Eigen::Matrix<int, -1, -1, 0, -1, -1> >(Eigen::MatrixBase<Eigen::Matrix<double, -1, -1, 0, -1, -1> > const&, Eigen::MatrixBase<Eigen::Matrix<int, -1, -1, 0, -1, -1> > const&, Eigen::MatrixBase<Eigen::Matrix<double, -1, -1, 0, -1, -1> > const&, Eigen::MatrixBase<Eigen::Matrix<int, -1, -1, 0, -1, -1> > const&, igl::MeshBooleanType const&, Eigen::PlainObjectBase<Eigen::Matrix<double, -1, -1, 0, -1, -1> >&, Eigen::PlainObjectBase<Eigen::Matrix<int, -1, -1, 0, -1, -1> >&, Eigen::PlainObjectBase<Eigen::Matrix<int, -1, -1, 0, -1, -1> >&);
  418. template bool igl::copyleft::cgal::mesh_boolean<Eigen::Matrix<double, -1, -1, 0, -1, -1>, Eigen::Matrix<int, -1, -1, 0, -1, -1>, Eigen::Matrix<double, -1, -1, 0, -1, -1>, Eigen::Matrix<int, -1, -1, 0, -1, -1>, Eigen::Matrix<int, -1, 1, 0, -1, 1> >(std::vector<Eigen::Matrix<double, -1, -1, 0, -1, -1>, std::allocator<Eigen::Matrix<double, -1, -1, 0, -1, -1> > > const&, std::vector<Eigen::Matrix<int, -1, -1, 0, -1, -1>, std::allocator<Eigen::Matrix<int, -1, -1, 0, -1, -1> > > const&, std::function<int (Eigen::Matrix<int, 1, -1, 1, 1, -1>)> const&, std::function<int (int, int)> const&, Eigen::PlainObjectBase<Eigen::Matrix<double, -1, -1, 0, -1, -1> >&, Eigen::PlainObjectBase<Eigen::Matrix<int, -1, -1, 0, -1, -1> >&, Eigen::PlainObjectBase<Eigen::Matrix<int, -1, 1, 0, -1, 1> >&);
  419. #ifdef WIN32
  420. template bool igl::copyleft::cgal::mesh_boolean<class Eigen::Matrix<class CGAL::Lazy_exact_nt<class CGAL::Gmpq>, -1, 3, 0, -1, 3>, class Eigen::Matrix<int, -1, -1, 0, -1, -1>, class Eigen::Matrix<class CGAL::Lazy_exact_nt<class CGAL::Gmpq>, -1, 3, 0, -1, 3>, class Eigen::Matrix<int, -1, -1, 0, -1, -1>, class Eigen::Matrix<class CGAL::Lazy_exact_nt<class CGAL::Gmpq>, -1, 3, 0, -1, 3>, class Eigen::Matrix<int, -1, -1, 0, -1, -1>, class Eigen::Matrix<__int64, -1, 1, 0, -1, 1>>(class Eigen::MatrixBase<class Eigen::Matrix<class CGAL::Lazy_exact_nt<class CGAL::Gmpq>, -1, 3, 0, -1, 3>> const &, class Eigen::MatrixBase<class Eigen::Matrix<int, -1, -1, 0, -1, -1>> const &, class Eigen::MatrixBase<class Eigen::Matrix<class CGAL::Lazy_exact_nt<class CGAL::Gmpq>, -1, 3, 0, -1, 3>> const &, class Eigen::MatrixBase<class Eigen::Matrix<int, -1, -1, 0, -1, -1>> const &, enum igl::MeshBooleanType const &, class Eigen::PlainObjectBase<class Eigen::Matrix<class CGAL::Lazy_exact_nt<class CGAL::Gmpq>, -1, 3, 0, -1, 3>> &, class Eigen::PlainObjectBase<class Eigen::Matrix<int, -1, -1, 0, -1, -1>> &, class Eigen::PlainObjectBase<class Eigen::Matrix<__int64, -1, 1, 0, -1, 1>> &);
  421. #endif
  422. #endif