mirror of https://github.com/CGAL/cgal
add missing types
This commit is contained in:
parent
41162e27fa
commit
503b840d25
|
|
@ -1,6 +1,9 @@
|
|||
Package triangulation: provides triangulations Delaunay triangulations,
|
||||
constrained and regular triangulations with tests and examples.
|
||||
|
||||
Ver 7.20
|
||||
- add special_insert_in_edge() for Delaunay_constrained_triangulations
|
||||
|
||||
Ver 7.19 (08/04/02)
|
||||
- fixed copy constructor oc Constraint_hierarchy
|
||||
|
||||
|
|
|
|||
|
|
@ -8,7 +8,8 @@
|
|||
#include <CGAL/Constrained_triangulation_plus_2.h>
|
||||
|
||||
typedef CGAL::Simple_cartesian<double> K1;
|
||||
typedef CGAL::Filtered_kernel<K1> K;
|
||||
typedef CGAL::Filtered_kernel<K1> K2;
|
||||
struct K : public K2 {};
|
||||
|
||||
typedef CGAL::Triangulation_vertex_base_2<K> Vb;
|
||||
typedef CGAL::Constrained_triangulation_face_base_2<K> Fb;
|
||||
|
|
|
|||
|
|
@ -33,7 +33,12 @@ CGAL_BEGIN_NAMESPACE
|
|||
template <class T>
|
||||
struct Pointer
|
||||
{
|
||||
typedef T value_type;
|
||||
typedef void iterator_category;
|
||||
typedef T value_type;
|
||||
typedef void difference_type;
|
||||
typedef T* pointer;
|
||||
typedef T& reference;
|
||||
|
||||
|
||||
//Pointer(const T* p = NULL) : _pointer((T*)p) {}
|
||||
//Pointer( T* p = NULL) : _pointer((T*)p) {}
|
||||
|
|
|
|||
Loading…
Reference in New Issue