mirror of https://github.com/CGAL/cgal
85 lines
2.4 KiB
C++
85 lines
2.4 KiB
C++
// Copyright (c) 2010 INRIA Sophia-Antipolis (France).
|
|
// All rights reserved.
|
|
//
|
|
// This file is part of CGAL (www.cgal.org).
|
|
// You can redistribute it and/or modify it under the terms of the GNU
|
|
// General Public License as published by the Free Software Foundation,
|
|
// either version 3 of the License, or (at your option) any later version.
|
|
//
|
|
// Licensees holding a valid commercial license may use this file in
|
|
// accordance with the commercial license agreement provided with the software.
|
|
//
|
|
// This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
|
|
// WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
|
|
//
|
|
// $URL$
|
|
// $Id$
|
|
// SPDX-License-Identifier: GPL-3.0+
|
|
//
|
|
//
|
|
// Author(s) : Stephane Tayeb
|
|
//
|
|
//******************************************************************************
|
|
// File Description :
|
|
//******************************************************************************
|
|
|
|
#ifndef CGAL_MESH_3_MESH_CONSTANT_DOMAIN_FIELD_3_H
|
|
#define CGAL_MESH_3_MESH_CONSTANT_DOMAIN_FIELD_3_H
|
|
|
|
#include <CGAL/license/Mesh_3.h>
|
|
|
|
|
|
#include <map>
|
|
#include <utility>
|
|
#include <CGAL/internal/Has_nested_type_Bare_point.h>
|
|
#include <boost/mpl/eval_if.hpp>
|
|
#include <boost/mpl/identity.hpp>
|
|
|
|
namespace CGAL {
|
|
|
|
template <typename Gt, typename Index_>
|
|
class Mesh_constant_domain_field_3
|
|
{
|
|
public:
|
|
typedef typename Gt::FT FT;
|
|
typedef typename boost::mpl::eval_if_c<
|
|
internal::Has_nested_type_Bare_point<Gt>::value,
|
|
typename internal::Bare_point_type<Gt>,
|
|
boost::mpl::identity<typename Gt::Point_3>
|
|
>::type Point_3;
|
|
typedef Index_ Index;
|
|
|
|
private:
|
|
// Map to store field values
|
|
typedef std::map<std::pair<int,Index>,FT> Values;
|
|
|
|
public:
|
|
/// Constructor
|
|
Mesh_constant_domain_field_3(const FT& d) : d_(d) {}
|
|
|
|
/// Returns size
|
|
FT operator()(const Point_3&, const int dim, const Index& index) const
|
|
{
|
|
typename Values::const_iterator it = values_.find(std::make_pair(dim,index));
|
|
if ( it != values_.end() ) { return it->second; }
|
|
|
|
return d_;
|
|
}
|
|
|
|
/// Sets size at any point of dimension \c dim and index \c index
|
|
void set_size(const FT& size, const int dim, const Index& index)
|
|
{
|
|
values_.insert(std::make_pair(std::make_pair(dim,index),size));
|
|
}
|
|
|
|
private:
|
|
// default value
|
|
FT d_;
|
|
// Other values
|
|
Values values_;
|
|
};
|
|
|
|
} // end namespace CGAL
|
|
|
|
#endif // CGAL_MESH_3_MESH_CONSTANT_DOMAIN_FIELD_3_H
|