我使用 CGAL::Polygon_mesh_processing::corefine_and_compute_union(),
函数来计算 2 个网格的并集。
当我使用网站 ( https://cgal.geometryfactory.com/CGAL/doc/master/Polygon_mesh_processing/Polygon_mesh_processing_2corefinement_mesh_union_8cpp-example.html ) 中的代码示例和提供的关闭文件 blobby.off 和 8.off 时,一切正常。
不幸的是,当我使用其他关闭文件时,我收到了我不明白的错误:
CGAL error: assertion violation!
Expression : it_poly_hedge!=edge_to_hedge.end()
File : /usr/local/include/CGAL/Polygon_mesh_processing/internal/Corefinement/Visitor.h
Line : 1008
这是 Visitor.h 中的相关代码:
//WARNING: in few case this is needed if the marked edge is on the border
//to optimize it might be better to only use sorted pair. TAG_SLXX1
Node_id_pair opposite_pair(node_id_pair.second,node_id_pair.first);
it_poly_hedge=edge_to_hedge.find(opposite_pair);
CGAL_assertion( it_poly_hedge!=edge_to_hedge.end() );
你可以在这里找到我使用的文件:
https://pool234.seedbox.fr/files/index.php/s/H87xL0Ema9HC44P
(密码:分享)
谢谢你的帮助。
最佳答案
这是 sloriot 的回答:
谢谢
关于c++ - CGAL union 误会,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/46664139/