#include <boost/graph/graph_traits.hpp>
#include <boost/foreach.hpp>
#include <limits>
Go to the source code of this file.
|
| | FEVV |
| | Interfaces for plugins These interfaces will be used for different plugins.
|
| |
| | FEVV::Filters |
| |
|
| template<typename Descriptor , typename PropertyMap , typename MapType = typename PropertyMap::value_type> |
| void | FEVV::Filters::compute_min_max_descriptor (const Descriptor &d, const PropertyMap &prop_map, MapType &min_metric, MapType &max_metric) |
| | Generic call to compute min max from a Descriptor Get the value of the property map for the given descriptor and update minMetric and maxMetric accordingly. More...
|
| |
| template<typename HalfedgeGraph , typename PropertyMap , typename MapType = typename PropertyMap::value_type> |
| void | FEVV::Filters::compute_min_max_faces (const HalfedgeGraph &g, const PropertyMap &prop_map, MapType &min_metric, MapType &max_metric) |
| | Compute min and max value of a numerical property map for the faces of a mesh. More...
|
| |
| template<typename HalfedgeGraph , typename PropertyMap , typename MapType = typename PropertyMap::value_type> |
| void | FEVV::Filters::compute_min_max_vertices (const HalfedgeGraph &g, const PropertyMap &prop_map, MapType &min_metric, MapType &max_metric) |
| | Compute min and max value of a numerical property map for the vertices of a mesh. More...
|
| |
| template<typename HalfedgeGraph , typename PropertyMap , typename MapType = typename PropertyMap::value_type> |
| void | FEVV::Filters::compute_min_max_halfedges (const HalfedgeGraph &g, const PropertyMap &prop_map, MapType &min_metric, MapType &max_metric) |
| | Compute min and max value of a numerical property map for the halfedges of a mesh. More...
|
| |