mirror of https://github.com/CGAL/cgal
22 lines
629 B
C++
22 lines
629 B
C++
#include <CGAL/Exact_predicates_inexact_constructions_kernel.h>
|
|
#include <CGAL/Delaunay_triangulation_3.h>
|
|
#include <CGAL/point_generators_3.h>
|
|
#include <CGAL/draw_triangulation_3.h>
|
|
|
|
typedef CGAL::Exact_predicates_inexact_constructions_kernel K;
|
|
typedef CGAL::Delaunay_triangulation_3<K> DT3;
|
|
typedef CGAL::Creator_uniform_3<double,K::Point_3> Creator;
|
|
|
|
int main()
|
|
{
|
|
std::vector<K::Point_3> points;
|
|
CGAL::Random_points_in_sphere_3<K::Point_3,Creator> g(1.0);
|
|
std::copy_n(g, 50, std::back_inserter(points));
|
|
|
|
DT3 dt3(points.begin(), points.end());
|
|
|
|
CGAL::draw(dt3);
|
|
|
|
return EXIT_SUCCESS;
|
|
}
|