// Copyright (c) 2010 INRIA Sophia-Antipolis (France). // All rights reserved. // // This file is part of CGAL (www.cgal.org). // // $URL: https://github.com/CGAL/cgal/blob/v5.1/Mesh_3/include/CGAL/Mesh_edge_criteria_3.h $ // $Id: Mesh_edge_criteria_3.h 0779373 2020-03-26T13:31:46+01:00 Sébastien Loriot // SPDX-License-Identifier: GPL-3.0-or-later OR LicenseRef-Commercial // // // Author(s) : Stephane Tayeb // //****************************************************************************** // File Description : //****************************************************************************** #ifndef CGAL_MESH_EDGE_CRITERIA_3_H #define CGAL_MESH_EDGE_CRITERIA_3_H #include #include #include #include namespace CGAL { namespace Mesh_3 { namespace internal { // Those two classes are designed to handle dynamic initialization of // Sizing_field type (using named parameters of make_mesh_3 for example) template < typename FT_, typename Point_, typename Index_ > class Sizing_field_interface { public: typedef FT_ FT; typedef Point_ Point_3; typedef Index_ Index; virtual ~Sizing_field_interface() {} virtual FT operator()(const Point_3& p, const int dim, const Index& index) const = 0; virtual Sizing_field_interface* clone() const = 0; }; template < typename Sizing_field, typename FT, typename Point_3, typename Index> struct Sizing_field_container : public Sizing_field_interface < FT, Point_3, Index > { typedef Sizing_field_interface < FT, Point_3, Index > Base; typedef Sizing_field_container Self; public: Sizing_field_container(const Sizing_field& s) : s_(s) {} virtual ~Sizing_field_container() {} virtual FT operator()(const Point_3& p, const int dim, const Index& index) const { return s_(p,dim,index); } virtual Base* clone() const { return new Self(*this); } private: Sizing_field s_; }; } // end namespace internal } // end namespace Mesh_3 template < typename Tr > class Mesh_edge_criteria_3 { typedef Mesh_edge_criteria_3 Self; public: typedef typename Tr::Vertex::Index Index; typedef typename Tr::Geom_traits Gt; typedef typename Gt::FT FT; typedef typename Tr::Bare_point Point_3; /// Constructors Mesh_edge_criteria_3(const FT& value) : p_size_(new Mesh_3::internal::Sizing_field_container< Mesh_constant_domain_field_3 , FT, Point_3, Index>(value)) {} // Nb: SFINAE to avoid wrong matches with built-in numerical types // as int. template < typename Sizing_field > Mesh_edge_criteria_3 ( const Sizing_field& size, typename std::enable_if::value>::type* = 0 ) { p_size_ = new Mesh_3::internal::Sizing_field_container(size); } Mesh_edge_criteria_3(const Self& rhs) : p_size_(rhs.p_size_->clone()) {} /// Destructor ~Mesh_edge_criteria_3() { delete p_size_; } /// Returns size of tuple (p,dim,index) FT sizing_field(const Point_3& p, const int dim, const Index& index) const { return (*p_size_)(p,dim,index); } private: typedef Mesh_3::internal::Sizing_field_interface Sizing_field_interface; // A pointer to Sizing_field_interface to handle dynamic wrapping of // real Sizing_field type Sizing_field_interface* p_size_; }; } // end namespace CGAL #endif // CGAL_MESH_EDGE_CRITERIA_3_H