Remove unused typedef

This commit is contained in:
Laurent Rineau 2018-03-21 15:23:17 +01:00
parent a69ea141b6
commit 2bb3d11cd0
1 changed files with 4 additions and 3 deletions

View File

@ -22,9 +22,7 @@
// Sphere Domain
typedef CGAL::Exact_predicates_inexact_constructions_kernel K;
typedef K::FT FT;
typedef K::Point_3 Point;
typedef FT (Function)(const Point&);
typedef CGAL::Labeled_mesh_domain_3<K> Implicit_domain;
// Polyhedral Domain
@ -182,6 +180,9 @@ typedef Mesh_criteria::Facet_criteria Facet_criteria;
typedef Mesh_criteria::Cell_criteria Cell_criteria;
// Function
typedef K::FT FT;
typedef K::Point_3 Point;
FT sphere_centered_at_111 (const Point& p)
{
const FT dx=p.x()-1;