我正在尝试将2d网格库用于代码。我在文档上复制了以下示例中的语法和包含文件
mesh_global.cpp
但当我添加以下行时
CGAL::refine_Delaunay_mesh_2(cdt, Criteria(0.015625, sq3*a));
我收到一个指向行的编译错误
#include <CGAL/Delaunay_mesher_2.h>
问题是代码在不调用网格函数的情况下编译得很好。
完整的错误太大了,无法在这里发布,但我在之间发现了这条线
/home/sameer/cgal/gap cvt/gap_cvt.cpp:1505:62: required from here
/usr/include/CGAL/Delaunay_mesher_2.h:166:11: error: ‘class CGAL::Constrained_triangulation_face_base_2<CGAL::Epick, CGAL::Triangulation_face_base_2<CGAL::Epick, CGAL::Triangulation_ds_face_base_2<CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_2<CGAL::Epick, CGAL::Triangulation_ds_vertex_base_2<void> >, CGAL::Constrained_triangulation_face_base_2<CGAL::Epick, CGAL::Triangulation_face_base_2<CGAL::Epick, CGAL::Triangulation_ds_face_base_2<void> > > > > > >’ has no member named ‘set_in_domain’
it->set_in_domain(!mark);
除了参数之外,我看不出我遗漏了什么——代码几乎和示例中的一样。
2D网格器类Delaunay_meshr_2期望CDT
模板参数具有DelaunayMeshFaceBase_2的面类型模型。不能使用默认的三角测量数据结构。
在您指出的示例中,CDT类型声明如下:
typedef CGAL::Exact_predicates_inexact_constructions_kernel K;
typedef CGAL::Triangulation_vertex_base_2<K> Vb;
typedef CGAL::Delaunay_mesh_face_base_2<K> Fb;
typedef CGAL::Triangulation_data_structure_2<Vb, Fb> Tds;
typedef CGAL::Constrained_Delaunay_triangulation_2<K, Tds> CDT;