mesh_boolean.cpp 32 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466
  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 DerivedV,
  144. typename DerivedF,
  145. typename DerivedVC,
  146. typename DerivedFC,
  147. typename DerivedJ>
  148. IGL_INLINE bool igl::copyleft::cgal::mesh_boolean(
  149. const std::vector<DerivedV > & Vlist,
  150. const std::vector<DerivedF > & Flist,
  151. const MeshBooleanType & type,
  152. Eigen::PlainObjectBase<DerivedVC > & VC,
  153. Eigen::PlainObjectBase<DerivedFC > & FC,
  154. Eigen::PlainObjectBase<DerivedJ > & J)
  155. {
  156. DerivedV VV;
  157. DerivedF FF;
  158. Eigen::Matrix<size_t,Eigen::Dynamic,1> Vsizes,Fsizes;
  159. igl::combine(Vlist,Flist,VV,FF,Vsizes,Fsizes);
  160. std::function<int(const int, const int)> keep;
  161. std::function<int(const Eigen::Matrix<int,1,Eigen::Dynamic>) > wind_num_op;
  162. mesh_boolean_type_to_funcs(type,wind_num_op,keep);
  163. return mesh_boolean(VV,FF,Fsizes,wind_num_op,keep,VC,FC,J);
  164. }
  165. template <
  166. typename DerivedVV,
  167. typename DerivedFF,
  168. typename Derivedsizes,
  169. typename DerivedVC,
  170. typename DerivedFC,
  171. typename DerivedJ>
  172. IGL_INLINE bool igl::copyleft::cgal::mesh_boolean(
  173. const Eigen::MatrixBase<DerivedVV > & VV,
  174. const Eigen::MatrixBase<DerivedFF > & FF,
  175. const Eigen::MatrixBase<Derivedsizes> & sizes,
  176. const std::function<int(const Eigen::Matrix<int,1,Eigen::Dynamic>) >& wind_num_op,
  177. const std::function<int(const int, const int)> & keep,
  178. Eigen::PlainObjectBase<DerivedVC > & VC,
  179. Eigen::PlainObjectBase<DerivedFC > & FC,
  180. Eigen::PlainObjectBase<DerivedJ > & J)
  181. {
  182. #ifdef MESH_BOOLEAN_TIMING
  183. const auto & tictoc = []() -> double
  184. {
  185. static double t_start = igl::get_seconds();
  186. double diff = igl::get_seconds()-t_start;
  187. t_start += diff;
  188. return diff;
  189. };
  190. const auto log_time = [&](const std::string& label) -> void {
  191. std::cout << "mesh_boolean." << label << ": "
  192. << tictoc() << std::endl;
  193. };
  194. tictoc();
  195. #endif
  196. typedef typename DerivedVC::Scalar Scalar;
  197. typedef CGAL::Epeck Kernel;
  198. typedef Kernel::FT ExactScalar;
  199. typedef Eigen::Matrix<Scalar,Eigen::Dynamic,3> MatrixX3S;
  200. typedef Eigen::Matrix<typename DerivedJ::Scalar,Eigen::Dynamic,1> VectorXJ;
  201. typedef Eigen::Matrix<
  202. ExactScalar,
  203. Eigen::Dynamic,
  204. Eigen::Dynamic,
  205. DerivedVC::IsRowMajor> MatrixXES;
  206. MatrixXES V;
  207. DerivedFC F;
  208. VectorXJ CJ;
  209. {
  210. Eigen::VectorXi I;
  211. igl::copyleft::cgal::RemeshSelfIntersectionsParam params;
  212. params.stitch_all = true;
  213. MatrixXES Vr;
  214. DerivedFC Fr;
  215. Eigen::MatrixXi IF;
  216. igl::copyleft::cgal::remesh_self_intersections(
  217. VV, FF, params, Vr, Fr, IF, CJ, I);
  218. assert(I.size() == Vr.rows());
  219. // Merge coinciding vertices into non-manifold vertices.
  220. std::for_each(Fr.data(), Fr.data()+Fr.size(),
  221. [&I](typename DerivedFC::Scalar& a) { a=I[a]; });
  222. // Remove unreferenced vertices.
  223. Eigen::VectorXi UIM;
  224. igl::remove_unreferenced(Vr, Fr, V, F, UIM);
  225. }
  226. #ifdef MESH_BOOLEAN_TIMING
  227. log_time("resolve_self_intersection");
  228. #endif
  229. // Compute edges of (F) --> (E,uE,EMAP,uE2E)
  230. Eigen::MatrixXi E, uE;
  231. Eigen::VectorXi EMAP;
  232. std::vector<std::vector<size_t> > uE2E;
  233. igl::unique_edge_map(F, E, uE, EMAP, uE2E);
  234. // Compute patches (F,EMAP,uE2E) --> (P)
  235. Eigen::VectorXi P;
  236. const size_t num_patches = igl::extract_manifold_patches(F, EMAP, uE2E, P);
  237. #ifdef MESH_BOOLEAN_TIMING
  238. log_time("patch_extraction");
  239. #endif
  240. // Compute cells (V,F,P,E,uE,EMAP) -> (per_patch_cells)
  241. Eigen::MatrixXi per_patch_cells;
  242. const size_t num_cells =
  243. igl::copyleft::cgal::extract_cells(
  244. V, F, P, E, uE, uE2E, EMAP, per_patch_cells);
  245. #ifdef MESH_BOOLEAN_TIMING
  246. log_time("cell_extraction");
  247. #endif
  248. // Compute winding numbers on each side of each facet.
  249. const size_t num_faces = F.rows();
  250. // W(f,:) --> [w1out,w1in,w2out,w2in, ... wnout,wnint] winding numbers above
  251. // and below each face w.r.t. each input mesh, so that W(f,2*i) is the
  252. // winding number above face f w.r.t. input i, and W(f,2*i+1) is the winding
  253. // number below face f w.r.t. input i.
  254. Eigen::MatrixXi W;
  255. // labels(f) = i means that face f comes from mesh i
  256. Eigen::VectorXi labels(num_faces);
  257. // cumulative sizes
  258. Derivedsizes cumsizes;
  259. igl::cumsum(sizes,1,cumsizes);
  260. const size_t num_inputs = sizes.size();
  261. std::transform(
  262. CJ.data(),
  263. CJ.data()+CJ.size(),
  264. labels.data(),
  265. // Determine which input mesh birth face i comes from
  266. [&num_inputs,&cumsizes](int i)->int
  267. {
  268. for(int k = 0;k<num_inputs;k++)
  269. {
  270. if(i<cumsizes(k)) return k;
  271. }
  272. assert(false && "Birth parent index out of range");
  273. return -1;
  274. });
  275. bool valid = true;
  276. if (num_faces > 0)
  277. {
  278. valid = valid &
  279. igl::copyleft::cgal::propagate_winding_numbers(
  280. V, F, uE, uE2E, num_patches, P, num_cells, per_patch_cells, labels, W);
  281. } else
  282. {
  283. W.resize(0, 2*num_inputs);
  284. }
  285. assert((size_t)W.rows() == num_faces);
  286. // If W doesn't have enough columns, pad with zeros
  287. if (W.cols() <= 2*num_inputs)
  288. {
  289. const int old_ncols = W.cols();
  290. W.conservativeResize(num_faces,2*num_inputs);
  291. W.rightCols(2*num_inputs-old_ncols).setConstant(0);
  292. }
  293. assert((size_t)W.cols() == 2*num_inputs);
  294. #ifdef MESH_BOOLEAN_TIMING
  295. log_time("propagate_input_winding_number");
  296. #endif
  297. // Compute resulting winding number.
  298. Eigen::MatrixXi Wr(num_faces, 2);
  299. for (size_t i=0; i<num_faces; i++)
  300. {
  301. // Winding number vectors above and below
  302. Eigen::RowVectorXi w_out(1,num_inputs), w_in(1,num_inputs);
  303. for(size_t k =0;k<num_inputs;k++)
  304. {
  305. w_out(k) = W(i,2*k+0);
  306. w_in(k) = W(i,2*k+1);
  307. }
  308. Wr(i,0) = wind_num_op(w_out);
  309. Wr(i,1) = wind_num_op(w_in);
  310. }
  311. #ifdef MESH_BOOLEAN_TIMING
  312. log_time("compute_output_winding_number");
  313. #endif
  314. #ifdef SMALL_CELL_REMOVAL
  315. igl::copyleft::cgal::relabel_small_immersed_cells(
  316. V, F, num_patches, P, num_cells, per_patch_cells, 1e-3, Wr);
  317. #endif
  318. // Extract boundary separating inside from outside.
  319. auto index_to_signed_index = [&](size_t i, bool ori) -> int
  320. {
  321. return (i+1)*(ori?1:-1);
  322. };
  323. //auto signed_index_to_index = [&](int i) -> size_t {
  324. // return abs(i) - 1;
  325. //};
  326. std::vector<int> selected;
  327. for(size_t i=0; i<num_faces; i++)
  328. {
  329. auto should_keep = keep(Wr(i,0), Wr(i,1));
  330. if (should_keep > 0)
  331. {
  332. selected.push_back(index_to_signed_index(i, true));
  333. } else if (should_keep < 0)
  334. {
  335. selected.push_back(index_to_signed_index(i, false));
  336. }
  337. }
  338. const size_t num_selected = selected.size();
  339. DerivedFC kept_faces(num_selected, 3);
  340. DerivedJ kept_face_indices(num_selected, 1);
  341. for (size_t i=0; i<num_selected; i++)
  342. {
  343. size_t idx = abs(selected[i]) - 1;
  344. if (selected[i] > 0)
  345. {
  346. kept_faces.row(i) = F.row(idx);
  347. } else
  348. {
  349. kept_faces.row(i) = F.row(idx).reverse();
  350. }
  351. kept_face_indices(i, 0) = CJ[idx];
  352. }
  353. #ifdef MESH_BOOLEAN_TIMING
  354. log_time("extract_output");
  355. #endif
  356. // Finally, remove duplicated faces and unreferenced vertices.
  357. {
  358. DerivedFC G;
  359. DerivedJ JJ;
  360. igl::resolve_duplicated_faces(kept_faces, G, JJ);
  361. igl::slice(kept_face_indices, JJ, 1, J);
  362. #ifdef DOUBLE_CHECK_EXACT_OUTPUT
  363. {
  364. // Sanity check on exact output.
  365. igl::copyleft::cgal::RemeshSelfIntersectionsParam params;
  366. params.detect_only = true;
  367. params.first_only = true;
  368. MatrixXES dummy_VV;
  369. DerivedFC dummy_FF, dummy_IF;
  370. Eigen::VectorXi dummy_J, dummy_IM;
  371. igl::copyleft::cgal::SelfIntersectMesh<
  372. Kernel,
  373. MatrixXES, DerivedFC,
  374. MatrixXES, DerivedFC,
  375. DerivedFC,
  376. Eigen::VectorXi,
  377. Eigen::VectorXi
  378. > checker(V, G, params,
  379. dummy_VV, dummy_FF, dummy_IF, dummy_J, dummy_IM);
  380. if (checker.count != 0)
  381. {
  382. throw "Self-intersection not fully resolved.";
  383. }
  384. }
  385. #endif
  386. MatrixX3S Vs;
  387. assign(V,Vs);
  388. Eigen::VectorXi newIM;
  389. igl::remove_unreferenced(Vs,G,VC,FC,newIM);
  390. }
  391. #ifdef MESH_BOOLEAN_TIMING
  392. log_time("clean_up");
  393. #endif
  394. return valid;
  395. }
  396. template <
  397. typename DerivedVA,
  398. typename DerivedFA,
  399. typename DerivedVB,
  400. typename DerivedFB,
  401. typename DerivedVC,
  402. typename DerivedFC>
  403. IGL_INLINE bool igl::copyleft::cgal::mesh_boolean(
  404. const Eigen::MatrixBase<DerivedVA > & VA,
  405. const Eigen::MatrixBase<DerivedFA > & FA,
  406. const Eigen::MatrixBase<DerivedVB > & VB,
  407. const Eigen::MatrixBase<DerivedFB > & FB,
  408. const MeshBooleanType & type,
  409. Eigen::PlainObjectBase<DerivedVC > & VC,
  410. Eigen::PlainObjectBase<DerivedFC > & FC)
  411. {
  412. Eigen::Matrix<typename DerivedFC::Index, Eigen::Dynamic,1> J;
  413. return igl::copyleft::cgal::mesh_boolean(VA,FA,VB,FB,type,VC,FC,J);
  414. }
  415. #ifdef IGL_STATIC_LIBRARY
  416. // Explicit template instantiation
  417. // generated by autoexplicit.sh
  418. 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> >&);
  419. // generated by autoexplicit.sh
  420. 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> >&);
  421. // generated by autoexplicit.sh
  422. 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> >&);
  423. // generated by autoexplicit.sh
  424. 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> >&);
  425. // generated by autoexplicit.sh
  426. 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> >&);
  427. // generated by autoexplicit.sh
  428. 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> >&);
  429. 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> >&);
  430. 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> >&);
  431. 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> >&);
  432. 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> >&);
  433. 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> >&);
  434. 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> >&);
  435. 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> >&);
  436. 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> >&);
  437. 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> >&);
  438. 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> >&);
  439. 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> >&);
  440. 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> >&);
  441. 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> >&);
  442. 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&, 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> >&);
  443. #ifdef WIN32
  444. 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>> &);
  445. #endif
  446. #endif