TriangulationCellBase_3 does not request a circumcenter; DelaunayTriangulationCellBase_3 does. Delaunay_triangulation_3 only compiled because Triangulation_cell_base_3 (and Triangulation_ds_cell_base_3 !) provided circumcenter() operators and DT3 inherited T3's TDS. - The circumcenter() functions are removed where they shouldn't exist - DT3 uses DT_cell_base_3 as cell base instead of T_cell_base_3 - Concepts/Classes that supposedly only required TriangulationCellBase_3 and then built Delaunay triangulations with that (Alpha Shapes, etc.) are upgraded to request DelaunayTriangulationCellBase_3 (anyway, it wouldn't compile if you actually provided a model of TriangulationCellBase_3) - Fixed various wrong templates in classes/concepts such as MeshVertexBase_3 not refining RegularTriangulationVertexBase_3 and (only in the doc) defaulting to Triangulation_vertex_base_3 - Removed the deprecated class (for 4+ years) T_cell_base_with_circumcenter
37 lines
1.0 KiB
C++
37 lines
1.0 KiB
C++
#include <CGAL/Exact_predicates_inexact_constructions_kernel.h>
|
|
|
|
#include <CGAL/Regular_triangulation_3.h>
|
|
#include <CGAL/Regular_triangulation_cell_base_3.h>
|
|
#include <CGAL/Regular_triangulation_vertex_base_3.h>
|
|
#include <CGAL/Triangulation_vertex_base_with_info_3.h>
|
|
|
|
#include <cassert>
|
|
#include <vector>
|
|
|
|
typedef CGAL::Exact_predicates_inexact_constructions_kernel K;
|
|
|
|
typedef K::FT Weight;
|
|
typedef K::Point_3 Point;
|
|
typedef K::Weighted_point_3 Weighted_point;
|
|
|
|
typedef CGAL::Regular_triangulation_vertex_base_3<K> Vb0;
|
|
|
|
typedef CGAL::Triangulation_vertex_base_with_info_3<int, K, Vb0> Vb;
|
|
typedef CGAL::Regular_triangulation_cell_base_3<K> Cb;
|
|
typedef CGAL::Triangulation_data_structure_3<Vb,Cb> Tds;
|
|
|
|
typedef CGAL::Regular_triangulation_3<K, Tds> Rt;
|
|
|
|
int main()
|
|
{
|
|
Weighted_point wp(CGAL::ORIGIN,1);
|
|
|
|
Rt rt;
|
|
|
|
rt.insert(wp);
|
|
|
|
assert( rt.is_valid() );
|
|
|
|
return 0;
|
|
}
|