Program Listing for File Vertices.h¶
↰ Return to documentation for file (pcl\common\include\pcl\Vertices.h)
#ifndef PCL_MESSAGE_VERTICES_H
#define PCL_MESSAGE_VERTICES_H
#include <string>
#include <vector>
#include <ostream>
#include <boost/shared_ptr.hpp>
#include <pcl/pcl_macros.h>
namespace pcl
{
/** \brief Describes a set of vertices in a polygon mesh, by basically
* storing an array of indices.
*/
struct Vertices
{
Vertices () : vertices ()
{}
std::vector<uint32_t> vertices;
public:
typedef boost::shared_ptr<Vertices> Ptr;
typedef boost::shared_ptr<Vertices const> ConstPtr;
}; // struct Vertices
typedef boost::shared_ptr<Vertices> VerticesPtr;
typedef boost::shared_ptr<Vertices const> VerticesConstPtr;
inline std::ostream& operator<<(std::ostream& s, const ::pcl::Vertices & v)
{
s << "vertices[]" << std::endl;
for (size_t i = 0; i < v.vertices.size (); ++i)
{
s << " vertices[" << i << "]: ";
s << " " << v.vertices[i] << std::endl;
}
return (s);
}
} // namespace pcl
#endif // PCL_MESSAGE_VERTICES_H