CGAL 6.0 - Bounding Volumes
Loading...
Searching...
No Matches
Min_sphere_d/min_sphere_homogeneous_3.cpp
#include <CGAL/Exact_integer.h>
#include <CGAL/Homogeneous.h>
#include <CGAL/Random.h>
#include <CGAL/Min_sphere_annulus_d_traits_3.h>
#include <CGAL/Min_sphere_d.h>
#include <iostream>
#include <cstdlib>
typedef CGAL::Min_sphere_d<Traits> Min_sphere;
typedef K::Point_3 Point;
int
main ()
{
const int n = 10; // number of points
Point P[n]; // n points
CGAL::Random r; // random number generator
for (int i=0; i<n; ++i) {
P[i] = Point(r.get_int(0, 1000),r.get_int(0, 1000), r.get_int(0, 1000), 1 );
}
Min_sphere ms (P, P+n); // smallest enclosing sphere
std::cout << ms; // output the sphere
return 0;
}
The class Min_sphere_annulus_d_traits_3 is a traits class for the -dimensional optimisation algorithm...
Definition: Min_sphere_annulus_d_traits_3.h:23
An object of the class Min_sphere_d is the unique sphere of smallest volume enclosing a finite (multi...
Definition: Min_sphere_d.h:75
Mode set_pretty_mode(std::ios &s)