cgal/Surface_mesh_skeletonization
Mael Rouxel-Labbé a0427ec756 Fixed abusing Triangulation_cell_base_3 for Delaunay triangulations
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
2018-04-26 13:21:53 +02:00
..
benchmark/Surface_mesh_skeletonization Use CGAL include for boost counting/transform iterators everywhere 2018-01-23 11:09:52 +01:00
doc/Surface_mesh_skeletonization Unify the links to the Polyhedron demo in the package descriptions. 2017-01-10 14:56:52 +01:00
examples/Surface_mesh_skeletonization Merge branch 'master' into BGL-LCC-gdamiand 2017-06-15 10:03:53 -04:00
include/CGAL Fixed abusing Triangulation_cell_base_3 for Delaunay triangulations 2018-04-26 13:21:53 +02:00
package_info/Surface_mesh_skeletonization Commit all new dependencies files 2018-03-06 18:44:48 +01:00
test/Surface_mesh_skeletonization Correct inclusion of code that was moved from PMP to Operations_on_polyhedra 2017-03-23 09:04:57 +01:00
TODO