*** empty log message ***

This commit is contained in:
Matthias Bäsken 2002-04-02 08:41:14 +00:00
parent 9a36d66ecf
commit cb110d1d4e
4 changed files with 14 additions and 7 deletions

View File

@ -1,3 +1,7 @@
1.4.5 (02 April 2002)
- Nef_2 and Min_sphere_3 demos changed
(because there were changes in these packages breaking code)
1.4.4 (25 March 2002)
- Nef_2 demo changed and help added

View File

@ -51,6 +51,7 @@ int main(int argc, char *argv[])
#else
#include<CGAL/Cartesian.h>
#include<CGAL/Cartesian_d.h>
#include <CGAL/geowin_support.h>
#include<iostream>
#include<cstdlib>
@ -81,11 +82,12 @@ typedef double NT;
typedef double NT2;
#endif
typedef CGAL::Cartesian<NT> K;
typedef CGAL::Optimisation_d_traits_d<K> Traits;
typedef CGAL::Min_sphere_d<Traits> Min_sphere;
typedef K::Point_3 Point;
typedef K::Point_d Pointd;
typedef CGAL::Cartesian<NT> K;
typedef CGAL::Cartesian_d<NT> Kd;
typedef CGAL::Optimisation_d_traits_d<Kd> Traits;
typedef CGAL::Min_sphere_d<Traits> Min_sphere;
typedef K::Point_3 Point;
typedef Kd::Point_d Pointd;
// dimension
const int dim = 3;

View File

@ -68,7 +68,7 @@ int main(int argc, char *argv[])
#include <CGAL/IO/Nef_polyhedron_2_Window_stream.h>
#include <CGAL/geowin_support.h>
/*
template <>
struct ring_or_field<leda_integer> {
typedef ring_with_gcd kind;
@ -76,6 +76,7 @@ struct ring_or_field<leda_integer> {
static RT gcd(const RT& r1, const RT& r2)
{ return LEDA_NAMESPACE_NAME::gcd(r1,r2); }
};
*/
typedef CGAL::Extended_homogeneous<leda_integer> EK;
typedef CGAL::Nef_polyhedron_2<EK> Nef;

View File

@ -1 +1 @@
1.4.4 (25 Mar 2002)
1.4.5 (02 April 2002)