MEPP2 Project
|
#include <boost/graph/graph_traits.hpp>
#include <boost/graph/properties.hpp>
#include <iterator>
#include <boost/iterator/counting_iterator.hpp>
#include "FEVV/DataStructures/DataStructures_pcl_point_cloud.h"
Go to the source code of this file.
Classes | |
struct | boost::vertex_property_type< FEVV::PCLPointCloud > |
struct | boost::graph_traits< FEVV::PCLPointCloud > |
struct | boost::graph_traits< const FEVV::PCLPointCloud > |
Namespaces | |
boost | |
pcl | |
Functions | |
std::pair< typename boost::graph_traits< FEVV::PCLPointCloud >::vertex_iterator, typename boost::graph_traits< FEVV::PCLPointCloud >::vertex_iterator > | pcl::vertices (const FEVV::PCLPointCloud &pc) |
Returns the iterator range of the vertices of the mesh. More... | |
boost::graph_traits< FEVV::PCLPointCloud >::vertices_size_type | pcl::num_vertices (const FEVV::PCLPointCloud &m) |
Returns an upper bound of the number of vertices of the mesh. More... | |
boost::graph_traits< FEVV::PCLPointCloud >::vertex_descriptor | pcl::add_vertex (FEVV::PCLPointCloud &pc) |
Adds a new vertex to the graph without initializing the connectivity. More... | |
void | pcl::remove_vertex (typename boost::graph_traits< FEVV::PCLPointCloud >::vertex_descriptor v, FEVV::PCLPointCloud &pc) |
Removes v from the mesh. More... | |