mirror of https://github.com/CGAL/cgal
- Fixed test, examples, and demos to use default parameter of polyhedron.
This commit is contained in:
parent
165422d15e
commit
8a09bc0bb2
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -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()
|
||||
|
|
|
|||
Loading…
Reference in New Issue