/usr/include/CGAL/Mesh_criteria_3.h is in libcgal-dev 4.2-5ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 | // Copyright (c) 2009 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$
//
//
// Author(s) : Stéphane Tayeb
//
//******************************************************************************
// File Description :
// Implements default meshing criteria to drive Mesh_3 process
//******************************************************************************
#ifndef CGAL_MESH_CRITERIA_3_H
#define CGAL_MESH_CRITERIA_3_H
#include <CGAL/Mesh_3/global_parameters.h>
#include <CGAL/Mesh_edge_criteria_3.h>
#include <CGAL/Mesh_facet_criteria_3.h>
#include <CGAL/Mesh_cell_criteria_3.h>
namespace CGAL {
namespace parameters {
BOOST_PARAMETER_NAME( (edge_size, tag) edge_size_ )
BOOST_PARAMETER_NAME( (edge_sizing_field, tag) edge_sizing_field_ )
BOOST_PARAMETER_NAME( (facet_angle, tag) facet_angle_ )
BOOST_PARAMETER_NAME( (facet_size, tag) facet_size_ )
BOOST_PARAMETER_NAME( (facet_sizing_field, tag) facet_sizing_field_ )
BOOST_PARAMETER_NAME( (facet_distance, tag) facet_distance_ )
BOOST_PARAMETER_NAME( (facet_topology, tag) facet_topology_ )
BOOST_PARAMETER_NAME( (cell_radius_edge, tag) cell_radius_edge_ )
BOOST_PARAMETER_NAME( (cell_radius_edge_ratio, tag) cell_radius_edge_ratio_ )
BOOST_PARAMETER_NAME( (cell_size, tag) cell_size_ )
BOOST_PARAMETER_NAME( (cell_sizing_field, tag) cell_sizing_field_ )
BOOST_PARAMETER_NAME( (sizing_field, tag) sizing_field_ )
} // end namespace parameters
namespace internal {
// Class Mesh_criteria_3_impl
template < typename Tr,
typename EdgeCriteria,
typename FacetCriteria,
typename CellCriteria >
class Mesh_criteria_3_impl
{
typedef typename Tr::Geom_traits::FT FT;
public:
typedef EdgeCriteria Edge_criteria;
typedef FacetCriteria Facet_criteria;
typedef CellCriteria Cell_criteria;
// Constructor
Mesh_criteria_3_impl(const Facet_criteria& facet_criteria,
const Cell_criteria& cell_criteria)
: edge_criteria_(0)
, facet_criteria_(facet_criteria)
, cell_criteria_(cell_criteria)
{ }
// Constructor
Mesh_criteria_3_impl(const Edge_criteria& edge_criteria,
const Facet_criteria& facet_criteria,
const Cell_criteria& cell_criteria)
: edge_criteria_(edge_criteria)
, facet_criteria_(facet_criteria)
, cell_criteria_(cell_criteria)
{ }
// This template constructor is not instantiated when named parameters
// are not used, so Facet_criteria and Cell_criteria construction from FT
// is not a problem
template <class ArgumentPack>
Mesh_criteria_3_impl(const ArgumentPack& args)
: edge_criteria_(args[parameters::edge_size
| args[parameters::edge_sizing_field
| args[parameters::sizing_field | FT(0)] ] ])
, facet_criteria_(args[parameters::facet_angle | FT(0)],
args[parameters::facet_size
| args[parameters::facet_sizing_field
| args[parameters::sizing_field | FT(0)] ] ],
args[parameters::facet_distance | FT(0)],
args[parameters::facet_topology | CGAL::FACET_VERTICES_ON_SURFACE])
, cell_criteria_(args[parameters::cell_radius_edge_ratio
| args[parameters::cell_radius_edge | FT(0)] ],
args[parameters::cell_size
| args[parameters::cell_sizing_field
| args[parameters::sizing_field | FT(0)] ] ])
{ }
#ifndef CGAL_NO_DEPRECATED_CODE
const Edge_criteria& edge_criteria() const { return edge_criteria_; }
const Facet_criteria& facet_criteria() const { return facet_criteria_; }
const Cell_criteria& cell_criteria() const { return cell_criteria_; }
#endif
const Edge_criteria& edge_criteria_object() const { return edge_criteria_; }
const Facet_criteria& facet_criteria_object() const { return facet_criteria_; }
const Cell_criteria& cell_criteria_object() const { return cell_criteria_; }
private:
Edge_criteria edge_criteria_;
Facet_criteria facet_criteria_;
Cell_criteria cell_criteria_;
}; // end class Mesh_criteria_3_impl
} // end namespace internal
// Class Mesh_criteria_3
// Provides default mesh criteria to drive Mesh_3 process
template <typename Tr,
typename EdgeCriteria = Mesh_edge_criteria_3<Tr>,
typename FacetCriteria = Mesh_facet_criteria_3<Tr>,
typename CellCriteria = Mesh_cell_criteria_3<Tr> >
class Mesh_criteria_3
: public internal::Mesh_criteria_3_impl< Tr,
EdgeCriteria,
FacetCriteria,
CellCriteria >
{
typedef internal::Mesh_criteria_3_impl< Tr,
EdgeCriteria,
FacetCriteria,
CellCriteria> Base;
public:
typedef typename Base::Edge_criteria Edge_criteria;
typedef typename Base::Facet_criteria Facet_criteria;
typedef typename Base::Cell_criteria Cell_criteria;
// Constructor
Mesh_criteria_3(const Facet_criteria& facet_criteria,
const Cell_criteria& cell_criteria)
: Base(facet_criteria,
cell_criteria) {}
// Constructor
Mesh_criteria_3(const Edge_criteria& edge_criteria,
const Facet_criteria& facet_criteria,
const Cell_criteria& cell_criteria)
: Base(edge_criteria,
facet_criteria,
cell_criteria) {}
// For convenient constructor call (see examples)
BOOST_PARAMETER_CONSTRUCTOR(Mesh_criteria_3, (Base), parameters::tag,
(optional (edge_size_,*)
(edge_sizing_field_,*)
(facet_angle_,*)
(facet_size_,*)
(facet_sizing_field_,*)
(facet_distance_,*)
(facet_topology_,*)
(cell_radius_edge_,*)
(cell_size_,*)
(cell_sizing_field_,*)
(sizing_field_,*)
))
}; // end class Mesh_criteria_3
} // end namespace CGAL
#endif // CGAL_MESH_CRITERIA_3_H
|