- Fixed test, examples, and demos to use default parameter of polyhedron.

This commit is contained in:
Lutz Kettner 2003-05-07 15:55:13 +00:00
parent 165422d15e
commit 8a09bc0bb2
3 changed files with 3 additions and 6 deletions

View File

@ -1,5 +1,5 @@
2.46 (07 May 2003) [lk]
- Fixed degeneracy_test.C to use default parameter of polyhedron.
- Fixed test, examples, and demos to use default parameter of polyhedron.
2.45 (5 May 2003) [af]
- VC6 cleanup

View File

@ -34,8 +34,7 @@ typedef double RT;
typedef CGAL::Homogeneous<RT> K;
typedef K::Point_3 Point_3;
typedef CGAL::Polyhedron_default_traits_3<K> PolyTraits;
typedef CGAL::Polyhedron_3< PolyTraits > Polyhedron_3;
typedef CGAL::Polyhedron_3< K> Polyhedron_3;
typedef CGAL::Convex_hull_d_traits_3<K> Hull_traits_3;
typedef CGAL::Convex_hull_d< Hull_traits_3 > Convex_hull_3;

View File

@ -4,7 +4,6 @@
#include <CGAL/Homogeneous.h>
#include <CGAL/point_generators_3.h>
#include <CGAL/copy_n.h>
#include <CGAL/Polyhedron_default_traits_3.h>
#include <CGAL/Polyhedron_3.h>
#include <CGAL/convex_hull_incremental_3.h>
#include <vector>
@ -24,8 +23,7 @@ typedef CGAL::MP_Float RT;
typedef CGAL::Homogeneous<RT> K;
typedef K::Point_3 Point_3;
typedef CGAL::Polyhedron_default_traits_3<K> PolyTraits;
typedef CGAL::Polyhedron_3< PolyTraits > Polyhedron;
typedef CGAL::Polyhedron_3< K> Polyhedron;
typedef CGAL::Creator_uniform_3<int, Point_3> Creator;
int main()