ITK
4.1.0
Insight Segmentation and Registration Toolkit
|
#include <itkPolygonCell.h>
Public Types | |
typedef EdgeType::SelfAutoPointer | EdgeAutoPointer |
typedef FixedArray< int, 2 > | EdgeInfo |
typedef std::deque< EdgeInfo > | EdgeInfoDQ |
typedef LineCell< TCellInterface > | EdgeType |
typedef VertexType::SelfAutoPointer | VertexAutoPointer |
typedef VertexCell < TCellInterface > | VertexType |
Public Member Functions | |
void | AddPointId (PointIdentifier) |
void | BuildEdges (void) |
void | ClearPoints (void) |
virtual bool | GetBoundaryFeature (int dimension, CellFeatureIdentifier, CellAutoPointer &) |
virtual unsigned int | GetDimension (void) const |
virtual bool | GetEdge (CellFeatureIdentifier, EdgeAutoPointer &) |
virtual const char * | GetNameOfClass () const |
virtual CellFeatureCount | GetNumberOfBoundaryFeatures (int dimension) const |
virtual CellFeatureCount | GetNumberOfEdges (void) const |
virtual unsigned int | GetNumberOfPoints (void) const |
virtual CellFeatureCount | GetNumberOfVertices (void) const |
virtual bool | GetVertex (CellFeatureIdentifier, VertexAutoPointer &) |
itkCellVisitMacro (Superclass::POLYGON_CELL) | |
virtual PointIdIterator | PointIdsBegin (void) |
virtual PointIdConstIterator | PointIdsBegin (void) const |
virtual PointIdIterator | PointIdsEnd (void) |
virtual PointIdConstIterator | PointIdsEnd (void) const |
void | RemovePointId (PointIdentifier) |
virtual void | SetPointId (int localId, PointIdentifier) |
virtual void | SetPointIds (PointIdConstIterator first) |
virtual void | SetPointIds (PointIdConstIterator first, PointIdConstIterator last) |
void | SetPointIds (int dummy, int num, PointIdConstIterator first) |
~PolygonCell () | |
itkCellCommonTypedefs (PolygonCell) | |
itkCellInheritedTypedefs (TCellInterface) | |
virtual CellGeometry | GetType (void) const |
virtual void | MakeCopy (CellAutoPointer &) const |
PolygonCell () | |
PolygonCell (PointIdentifier NumberOfPoints) | |
Static Public Attributes | |
static const unsigned int | CellDimension = 2 |
Protected Attributes | |
std::vector< EdgeInfo > | m_Edges |
std::vector< PointIdentifier > | m_PointIds |
Private Member Functions | |
void | operator= (const Self &) |
PolygonCell (const Self &) |
Represents a polygon in a Mesh.
PolygonCell represents a polygon for a Mesh. the points of the polygon can be dynamically changed.
TPixelType | The type associated with a point, cell, or boundary for use in storing its data. |
TCellTraits | Type information of mesh containing cell. |
Definition at line 53 of file itkPolygonCell.h.
typedef EdgeType::SelfAutoPointer itk::PolygonCell< TCellInterface >::EdgeAutoPointer |
Definition at line 73 of file itkPolygonCell.h.
typedef FixedArray< int, 2 > itk::PolygonCell< TCellInterface >::EdgeInfo |
Definition at line 75 of file itkPolygonCell.h.
typedef std::deque< EdgeInfo > itk::PolygonCell< TCellInterface >::EdgeInfoDQ |
Definition at line 76 of file itkPolygonCell.h.
typedef LineCell< TCellInterface > itk::PolygonCell< TCellInterface >::EdgeType |
The type of boundary for this triangle's edges.
Definition at line 72 of file itkPolygonCell.h.
typedef VertexType::SelfAutoPointer itk::PolygonCell< TCellInterface >::VertexAutoPointer |
Definition at line 69 of file itkPolygonCell.h.
typedef VertexCell< TCellInterface > itk::PolygonCell< TCellInterface >::VertexType |
The type of boundary for this triangle's vertices.
Definition at line 68 of file itkPolygonCell.h.
itk::PolygonCell< TCellInterface >::PolygonCell | ( | ) | [inline] |
Constructor and destructor
Definition at line 126 of file itkPolygonCell.h.
itk::PolygonCell< TCellInterface >::PolygonCell | ( | PointIdentifier | NumberOfPoints | ) | [inline] |
Constructor and destructor
Definition at line 127 of file itkPolygonCell.h.
itk::PolygonCell< TCellInterface >::~PolygonCell | ( | ) | [inline] |
Definition at line 137 of file itkPolygonCell.h.
itk::PolygonCell< TCellInterface >::PolygonCell | ( | const Self & | ) | [private] |
void itk::PolygonCell< TCellInterface >::AddPointId | ( | PointIdentifier | ) |
void itk::PolygonCell< TCellInterface >::BuildEdges | ( | void | ) |
void itk::PolygonCell< TCellInterface >::ClearPoints | ( | void | ) |
virtual bool itk::PolygonCell< TCellInterface >::GetBoundaryFeature | ( | int | dimension, |
CellFeatureIdentifier | , | ||
CellAutoPointer & | |||
) | [virtual] |
virtual unsigned int itk::PolygonCell< TCellInterface >::GetDimension | ( | void | ) | const [virtual] |
virtual bool itk::PolygonCell< TCellInterface >::GetEdge | ( | CellFeatureIdentifier | , |
EdgeAutoPointer & | |||
) | [virtual] |
virtual const char* itk::PolygonCell< TCellInterface >::GetNameOfClass | ( | ) | const [virtual] |
Standard part of every itk Object.
virtual CellFeatureCount itk::PolygonCell< TCellInterface >::GetNumberOfBoundaryFeatures | ( | int | dimension | ) | const [virtual] |
virtual CellFeatureCount itk::PolygonCell< TCellInterface >::GetNumberOfEdges | ( | void | ) | const [virtual] |
virtual unsigned int itk::PolygonCell< TCellInterface >::GetNumberOfPoints | ( | void | ) | const [virtual] |
virtual CellFeatureCount itk::PolygonCell< TCellInterface >::GetNumberOfVertices | ( | void | ) | const [virtual] |
Polygon-specific interface.
virtual CellGeometry itk::PolygonCell< TCellInterface >::GetType | ( | void | ) | const [inline, virtual] |
Implement the standard CellInterface.
Definition at line 82 of file itkPolygonCell.h.
virtual bool itk::PolygonCell< TCellInterface >::GetVertex | ( | CellFeatureIdentifier | , |
VertexAutoPointer & | |||
) | [virtual] |
itk::PolygonCell< TCellInterface >::itkCellCommonTypedefs | ( | PolygonCell< TCellInterface > | ) |
Standard class typedefs.
itk::PolygonCell< TCellInterface >::itkCellInheritedTypedefs | ( | TCellInterface | ) |
Standard class typedefs.
itk::PolygonCell< TCellInterface >::itkCellVisitMacro | ( | Superclass::POLYGON_CELL | ) |
Need to add POLYGON_CELL into CellInterface.
virtual void itk::PolygonCell< TCellInterface >::MakeCopy | ( | CellAutoPointer & | ) | const [virtual] |
Implement the standard CellInterface.
void itk::PolygonCell< TCellInterface >::operator= | ( | const Self & | ) | [private] |
virtual PointIdIterator itk::PolygonCell< TCellInterface >::PointIdsBegin | ( | void | ) | [virtual] |
virtual PointIdConstIterator itk::PolygonCell< TCellInterface >::PointIdsBegin | ( | void | ) | const [virtual] |
virtual PointIdIterator itk::PolygonCell< TCellInterface >::PointIdsEnd | ( | void | ) | [virtual] |
virtual PointIdConstIterator itk::PolygonCell< TCellInterface >::PointIdsEnd | ( | void | ) | const [virtual] |
void itk::PolygonCell< TCellInterface >::RemovePointId | ( | PointIdentifier | ) |
virtual void itk::PolygonCell< TCellInterface >::SetPointId | ( | int | localId, |
PointIdentifier | |||
) | [virtual] |
virtual void itk::PolygonCell< TCellInterface >::SetPointIds | ( | PointIdConstIterator | first | ) | [virtual] |
virtual void itk::PolygonCell< TCellInterface >::SetPointIds | ( | PointIdConstIterator | first, |
PointIdConstIterator | last | ||
) | [virtual] |
void itk::PolygonCell< TCellInterface >::SetPointIds | ( | int | dummy, |
int | num, | ||
PointIdConstIterator | first | ||
) |
const unsigned int itk::PolygonCell< TCellInterface >::CellDimension = 2 [static] |
Save some template parameter information.
Definition at line 65 of file itkPolygonCell.h.
std::vector< EdgeInfo > itk::PolygonCell< TCellInterface >::m_Edges [protected] |
Definition at line 139 of file itkPolygonCell.h.
std::vector< PointIdentifier > itk::PolygonCell< TCellInterface >::m_PointIds [protected] |
Definition at line 140 of file itkPolygonCell.h.