This category of posts will feature small pieces of code using CGAL.
Here comes my first code snippet
std::cout << "Hello World" << std::endl;
and let’s try something more involved
template <typename K>
class Triangulation {
typedef typename K::Point_3 Point;
Triangulation()
{}
};

No Comments
Comments for Code Snippets are now closed.