CGAL 5.1 - 3D Triangulations
Triangulation_3/draw_triangulation_3.cpp
#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>
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;
}
CGAL::Exact_predicates_inexact_constructions_kernel
CGAL::Creator_uniform_3
CGAL::draw
void draw(const T2 &at2)
copy_n
OutputIterator copy_n(InputIterator first, Size n, OutputIterator result)
CGAL::Delaunay_triangulation_3
Definition: Delaunay_triangulation_3.h:60