Point Cloud Library (PCL) 1.15.0
Loading...
Searching...
No Matches
pcl::geometry::VertexAroundFaceCirculator< MeshT > Class Template Reference

Circulates clockwise around a face and returns an index to the terminating vertex of the inner half-edge (the target). More...

#include <pcl/geometry/mesh_circulators.h>

Inheritance diagram for pcl::geometry::VertexAroundFaceCirculator< MeshT >:
Collaboration diagram for pcl::geometry::VertexAroundFaceCirculator< MeshT >:

Public Types

using Base
using Self = pcl::geometry::VertexAroundFaceCirculator<MeshT>
using Mesh = MeshT
using VertexIndex = typename Mesh::VertexIndex
using FaceIndex = typename Mesh::FaceIndex
using HalfEdgeIndex = typename Mesh::HalfEdgeIndex

Public Member Functions

 VertexAroundFaceCirculator ()
 Constructor resulting in an invalid circulator.
 VertexAroundFaceCirculator (const FaceIndex &idx_face, Mesh *const mesh)
 Construct from the face around which we want to circulate.
 VertexAroundFaceCirculator (const HalfEdgeIndex &idx_inner_half_edge, Mesh *const mesh)
 Construct directly from the inner half-edge.
bool isValid () const
 Check if the circulator is valid.
bool operator== (const Self &other) const
 Comparison operators (with boost::operators): == !=.
Selfoperator++ ()
 Increment operators (with boost::operators): ++ (pre and post)
Selfoperator-- ()
 Decrement operators (with boost::operators): – (pre and post)
VertexIndex getTargetIndex () const
 Get the index to the target vertex.
HalfEdgeIndex getCurrentHalfEdgeIndex () const
 Get the half-edge that is currently stored in the circulator.

Public Attributes

Meshmesh_
 The mesh to which this circulator belongs to.
HalfEdgeIndex idx_inner_half_edge_
 The inner half-edge of the face around which we want to circulate.

Detailed Description

template<class MeshT>
class pcl::geometry::VertexAroundFaceCirculator< MeshT >

Circulates clockwise around a face and returns an index to the terminating vertex of the inner half-edge (the target).

The best way to declare the circulator is to use the method pcl::geometry::MeshBase::getVertexAroundFaceCirculator ().

Template Parameters
MeshTMesh to which this circulator belongs to.
Note
The circulator can't be used to change the connectivity in the mesh (only const circulators are valid).
Author
Martin Saelzle

Definition at line 488 of file mesh_circulators.h.

Member Typedef Documentation

◆ Base

template<class MeshT>
using pcl::geometry::VertexAroundFaceCirculator< MeshT >::Base
Initial value:
boost::equality_comparable<
boost::unit_steppable<pcl::geometry::VertexAroundFaceCirculator<MeshT>>>
Circulates clockwise around a face and returns an index to the terminating vertex of the inner half-e...

Definition at line 493 of file mesh_circulators.h.

◆ FaceIndex

template<class MeshT>
using pcl::geometry::VertexAroundFaceCirculator< MeshT >::FaceIndex = typename Mesh::FaceIndex

Definition at line 500 of file mesh_circulators.h.

◆ HalfEdgeIndex

template<class MeshT>
using pcl::geometry::VertexAroundFaceCirculator< MeshT >::HalfEdgeIndex = typename Mesh::HalfEdgeIndex

Definition at line 501 of file mesh_circulators.h.

◆ Mesh

template<class MeshT>
using pcl::geometry::VertexAroundFaceCirculator< MeshT >::Mesh = MeshT

Definition at line 498 of file mesh_circulators.h.

◆ Self

template<class MeshT>
using pcl::geometry::VertexAroundFaceCirculator< MeshT >::Self = pcl::geometry::VertexAroundFaceCirculator<MeshT>

Definition at line 496 of file mesh_circulators.h.

◆ VertexIndex

template<class MeshT>
using pcl::geometry::VertexAroundFaceCirculator< MeshT >::VertexIndex = typename Mesh::VertexIndex

Definition at line 499 of file mesh_circulators.h.

Constructor & Destructor Documentation

◆ VertexAroundFaceCirculator() [1/3]

template<class MeshT>
pcl::geometry::VertexAroundFaceCirculator< MeshT >::VertexAroundFaceCirculator ( )
inline

Constructor resulting in an invalid circulator.

Definition at line 504 of file mesh_circulators.h.

◆ VertexAroundFaceCirculator() [2/3]

template<class MeshT>
pcl::geometry::VertexAroundFaceCirculator< MeshT >::VertexAroundFaceCirculator ( const FaceIndex & idx_face,
Mesh *const mesh )
inline

Construct from the face around which we want to circulate.

Definition at line 507 of file mesh_circulators.h.

◆ VertexAroundFaceCirculator() [3/3]

template<class MeshT>
pcl::geometry::VertexAroundFaceCirculator< MeshT >::VertexAroundFaceCirculator ( const HalfEdgeIndex & idx_inner_half_edge,
Mesh *const mesh )
inline

Construct directly from the inner half-edge.

Definition at line 512 of file mesh_circulators.h.

Member Function Documentation

◆ getCurrentHalfEdgeIndex()

template<class MeshT>
HalfEdgeIndex pcl::geometry::VertexAroundFaceCirculator< MeshT >::getCurrentHalfEdgeIndex ( ) const
inline

Get the half-edge that is currently stored in the circulator.

Definition at line 559 of file mesh_circulators.h.

◆ getTargetIndex()

template<class MeshT>
VertexIndex pcl::geometry::VertexAroundFaceCirculator< MeshT >::getTargetIndex ( ) const
inline

Get the index to the target vertex.

Definition at line 552 of file mesh_circulators.h.

Referenced by pcl::geometry::MeshBase< PolygonMesh< MeshTraitsT >, MeshTraitsT, PolygonMeshTag >::isBoundary().

◆ isValid()

template<class MeshT>
bool pcl::geometry::VertexAroundFaceCirculator< MeshT >::isValid ( ) const
inline

Check if the circulator is valid.

Warning
Does NOT check if the stored mesh pointer is valid. You have to ensure this yourself when constructing the circulator.

Definition at line 520 of file mesh_circulators.h.

◆ operator++()

template<class MeshT>
Self & pcl::geometry::VertexAroundFaceCirculator< MeshT >::operator++ ( )
inline

Increment operators (with boost::operators): ++ (pre and post)

Definition at line 536 of file mesh_circulators.h.

◆ operator--()

template<class MeshT>
Self & pcl::geometry::VertexAroundFaceCirculator< MeshT >::operator-- ( )
inline

Decrement operators (with boost::operators): – (pre and post)

Definition at line 544 of file mesh_circulators.h.

◆ operator==()

template<class MeshT>
bool pcl::geometry::VertexAroundFaceCirculator< MeshT >::operator== ( const Self & other) const
inline

Comparison operators (with boost::operators): == !=.

Warning
Does NOT check if the circulators belong to the same mesh. Please check this yourself.

Definition at line 529 of file mesh_circulators.h.

Member Data Documentation

◆ idx_inner_half_edge_

template<class MeshT>
HalfEdgeIndex pcl::geometry::VertexAroundFaceCirculator< MeshT >::idx_inner_half_edge_

The inner half-edge of the face around which we want to circulate.

Definition at line 568 of file mesh_circulators.h.

Referenced by pcl::geometry::VertexAroundFaceCirculator< const Self >::operator==().

◆ mesh_

template<class MeshT>
Mesh* pcl::geometry::VertexAroundFaceCirculator< MeshT >::mesh_

The mesh to which this circulator belongs to.

Definition at line 565 of file mesh_circulators.h.


The documentation for this class was generated from the following file: