Index used to access elements in the half-edge mesh. It is basically just a wrapper around an integer with a few added methods. More...
#include <mesh_indices.h>
Public Types | |
typedef boost::totally_ordered < pcl::geometry::FaceIndex, boost::unit_steppable < pcl::geometry::FaceIndex, boost::additive < pcl::geometry::FaceIndex > > > | Base |
typedef pcl::geometry::FaceIndex | Self |
Public Member Functions | |
FaceIndex () | |
Constructor. Initializes with an invalid index. | |
FaceIndex (const int index) | |
Constructor. | |
int | get () const |
Get the index. | |
void | invalidate () |
Invalidate the index. | |
bool | isValid () const |
Returns true if the index is valid. | |
Self & | operator++ () |
Increment operators (with boost::operators): ++ (pre and post) | |
Self & | operator+= (const Self &other) |
Addition operators (with boost::operators): + +=. | |
Self & | operator-- () |
Decrement operators (with boost::operators): \-\- (pre and post) | |
Self & | operator-= (const Self &other) |
Subtraction operators (with boost::operators): - -=. | |
bool | operator< (const Self &other) const |
Comparison operators (with boost::operators): < > <= >=. | |
bool | operator== (const Self &other) const |
Comparison operators (with boost::operators): == !=. | |
void | set (const int index) |
Set the index. | |
Private Attributes | |
int | index_ |
Stored index. | |
Friends | |
std::istream & | operator>> (std::istream &is, pcl::geometry::FaceIndex &index) |
istream operator. |
Index used to access elements in the half-edge mesh. It is basically just a wrapper around an integer with a few added methods.
Definition at line 479 of file mesh_indices.h.
typedef boost::totally_ordered<pcl::geometry::FaceIndex, boost::unit_steppable <pcl::geometry::FaceIndex, boost::additive <pcl::geometry::FaceIndex> > > pcl::geometry::FaceIndex::Base |
Definition at line 489 of file mesh_indices.h.
Definition at line 490 of file mesh_indices.h.
pcl::geometry::FaceIndex::FaceIndex | ( | ) | [inline] |
Constructor. Initializes with an invalid index.
Definition at line 493 of file mesh_indices.h.
pcl::geometry::FaceIndex::FaceIndex | ( | const int | index | ) | [inline, explicit] |
int pcl::geometry::FaceIndex::get | ( | ) | const [inline] |
Get the index.
Definition at line 522 of file mesh_indices.h.
void pcl::geometry::FaceIndex::invalidate | ( | ) | [inline] |
Invalidate the index.
Definition at line 515 of file mesh_indices.h.
bool pcl::geometry::FaceIndex::isValid | ( | ) | const [inline] |
Returns true if the index is valid.
Definition at line 508 of file mesh_indices.h.
Self& pcl::geometry::FaceIndex::operator++ | ( | ) | [inline] |
Increment operators (with boost::operators): ++ (pre and post)
Definition at line 550 of file mesh_indices.h.
Addition operators (with boost::operators): + +=.
Definition at line 566 of file mesh_indices.h.
Self& pcl::geometry::FaceIndex::operator-- | ( | ) | [inline] |
Decrement operators (with boost::operators): \-\- (pre and post)
Definition at line 558 of file mesh_indices.h.
Subtraction operators (with boost::operators): - -=.
Definition at line 574 of file mesh_indices.h.
bool pcl::geometry::FaceIndex::operator< | ( | const Self & | other | ) | const [inline] |
Comparison operators (with boost::operators): < > <= >=.
Definition at line 536 of file mesh_indices.h.
bool pcl::geometry::FaceIndex::operator== | ( | const Self & | other | ) | const [inline] |
Comparison operators (with boost::operators): == !=.
Definition at line 543 of file mesh_indices.h.
void pcl::geometry::FaceIndex::set | ( | const int | index | ) | [inline] |
Set the index.
Definition at line 529 of file mesh_indices.h.
std::istream& operator>> | ( | std::istream & | is, |
pcl::geometry::FaceIndex & | index | ||
) | [friend] |
istream operator.
Definition at line 598 of file mesh_indices.h.
int pcl::geometry::FaceIndex::index_ [private] |
Stored index.
Definition at line 583 of file mesh_indices.h.