Main Page   Groups   Namespace List   Class Hierarchy   Alphabetical List   Compound List   File List   Namespace Members   Compound Members   File Members   Concepts

itk::AutomaticTopologyMeshSource< TOutputMesh > Class Template Reference

#include <itkAutomaticTopologyMeshSource.h>

Inheritance diagram for itk::AutomaticTopologyMeshSource< TOutputMesh >:

Inheritance graph
[legend]
Collaboration diagram for itk::AutomaticTopologyMeshSource< TOutputMesh >:

Collaboration graph
[legend]
List of all members.

Detailed Description

template<class TOutputMesh>
class itk::AutomaticTopologyMeshSource< TOutputMesh >

Convenience class for generating meshes.

This generates an N-dimensional mesh consisting of some combination of vertices, line segments, triangles, quadrilaterals, tetrahedra, and hexahedra. Identifiers for the cells are automatically added, and topological connectivity is automatically computed. When a cell is added, all of its boundary features are determined and added as well.

The main methods are of the form AddThing, where Thing can be Point, Vertex, Triangle, Quadrilateral, Tetrahedron, or Hexahedron. Each of these methods has several overloaded forms, permitting multiple ways to specify the object being added. When called, each of these methods first checks to see if the object has already been added. If it has not, then a new identifier is generated (the smallest one so far unused), the object is added with that identifier, and the ID is returned. If the object has already been added, then the ID it already has is returned and nothing else is done.

When a cell is added, all of its boundary elements are also added, and boundary assignments are set. A cell can be specified using IDs of points already added, or using Point objects that may or may not already be in the mesh. If a cell is specified using Point objects, then the points are added to the mesh if necessary.

The different ways of specifying a cell are

  1. An IdentifierArrayType (= itk::Array<IdentifierType>) of point identifiers. These point identifiers are the ones returned by calls to AddPoint().
  2. A parameter list of point identifiers (for instance, this->AddLine(0, 1), if 0 and 1 are point identifiers).
  3. A parameter list of itk::Point objects (the function then generates the identifiers).
  4. A parameter list of C-style arrays, with each such array giving the coordinates of one point. This form is useful for copying in geometry from foreign data structures.

For meshes generated using this filter, only one cell can be added for any given set of vertices. If a, b, c, and d are identifiers for four points in R^3, then (a, b, c, d) and (a, c, d, b) determine two different quadrilaterals (at least one of which is either degenerate or nonplanar). If you call AddQuadrilateral(a, b, c, d); AddQuadrilateral(a, c, d, b); then only the first quadrilateral will actually be added.

To add the topological information to an already constructed mesh (for efficiency of traversal), use this class to generate a copy of the original mesh.

Example: The following code generates a mesh consisting of two triangles sharing an edge.

  typedef itk::AutomaticTopologyMeshSource< MeshType >  MeshSourceType;
  MeshSourceType::Pointer meshSource = MeshSourceType::New();
  meshSource->AddTriangle(
    meshSource->AddPoint(0, 0, 0),
    meshSource->AddPoint(1, 0, 0),
    meshSource->AddPoint(0, 1, 0) );
  meshSource->AddTriangle(
    meshSource->AddPoint(0, 0, 0),
    meshSource->AddPoint(1, 0, 0),
    meshSource->AddPoint(0, 0, 1) );

This class inherits from itk::MeshSource so it fits conveniently into a pipeline, but GetOutput() is always valid after every Add[Something]() call, and Update() is a no-op. It is not thread safe.

Definition at line 111 of file itkAutomaticTopologyMeshSource.h.

Public Types

typedef CellType::CellAutoPointer CellAutoPointer
typedef MeshType::CellType CellType
typedef SmartPointer< const
Self
ConstPointer
typedef PointType::CoordRepType CoordinateType
typedef DataObject::Pointer DataObjectPointer
typedef std::vector< DataObjectPointerDataObjectPointerArray
typedef DataObjectPointerArray::size_type DataObjectPointerArraySizeType
typedef HexahedronCell< CellTypeHexahedronCell
typedef Array< IdentifierTypeIdentifierArrayType
typedef unsigned long IdentifierType
typedef LineCell< CellTypeLineCell
typedef MeshType::Pointer MeshPointer
typedef TOutputMesh MeshType
typedef OutputMeshType::Pointer OutputMeshPointer
typedef TOutputMesh OutputMeshType
typedef SmartPointer< SelfPointer
typedef itk::hash_map< PointType,
IdentifierType, StructHashFunction<
PointType > > 
PointHashMap
typedef MeshType::PointType PointType
typedef QuadrilateralCell<
CellType
QuadrilateralCell
typedef AutomaticTopologyMeshSource Self
typedef MeshSource< TOutputMesh > Superclass
typedef TetrahedronCell< CellTypeTetrahedronCell
typedef TriangleCell< CellTypeTriangleCell
typedef VertexCell< CellTypeVertexCell

Public Member Functions

virtual void AbortGenerateDataOff ()
virtual void AbortGenerateDataOn ()
IdentifierType AddPoint (CoordinateType x0=0, CoordinateType x1=0, CoordinateType x2=0, CoordinateType x3=0, CoordinateType x4=0, CoordinateType x5=0)
IdentifierType AddQuadrilateral (const CoordinateType *p0, const CoordinateType *p1, const CoordinateType *p2, const CoordinateType *p3)
IdentifierType AddQuadrilateral (const PointType &p0, const PointType &p1, const PointType &p2, const PointType &p3)
IdentifierType AddQuadrilateral (IdentifierType pointId0, IdentifierType pointId1, IdentifierType pointId2, IdentifierType pointId3)
IdentifierType AddQuadrilateral (const IdentifierArrayType &pointIds)
virtual LightObject::Pointer CreateAnother () const
virtual void DebugOff () const
virtual void DebugOn () const
virtual void Delete ()
virtual void EnlargeOutputRequestedRegion (DataObject *)
virtual const bool & GetAbortGenerateData ()
CommandGetCommand (unsigned long tag)
bool GetDebug () const
DataObjectPointerArrayGetInputs ()
const MetaDataDictionaryGetMetaDataDictionary (void) const
MetaDataDictionaryGetMetaDataDictionary (void)
virtual unsigned long GetMTime () const
MultiThreaderGetMultiThreader ()
virtual const char * GetNameOfClass () const
DataObjectPointerArraySizeType GetNumberOfInputs () const
virtual DataObjectPointerArraySizeType GetNumberOfValidRequiredInputs () const
virtual const float & GetProgress ()
virtual int GetReferenceCount () const
bool HasObserver (const EventObject &event) const
void InvokeEvent (const EventObject &) const
void InvokeEvent (const EventObject &)
virtual DataObjectPointer MakeOutput (unsigned int idx)
virtual void Modified () const
virtual void PrepareOutputs ()
void Print (std::ostream &os, Indent indent=0) const
virtual void PropagateRequestedRegion (DataObject *output)
virtual void Register () const
void RemoveAllObservers ()
void RemoveObserver (unsigned long tag)
virtual void ResetPipeline ()
virtual void SetAbortGenerateData (bool _arg)
void SetDebug (bool debugFlag) const
void SetMetaDataDictionary (const MetaDataDictionary &rhs)
void SetOutput (TOutputMesh *output)
virtual void SetProgress (float _arg)
virtual void SetReferenceCount (int)
virtual void UnRegister () const
virtual void Update ()
virtual void UpdateLargestPossibleRegion ()
virtual void UpdateOutputData (DataObject *output)
virtual void UpdateOutputInformation ()
void UpdateProgress (float amount)
IdentifierType AddHexahedron (const CoordinateType *p0, const CoordinateType *p1, const CoordinateType *p2, const CoordinateType *p3, const CoordinateType *p4, const CoordinateType *p5, const CoordinateType *p6, const CoordinateType *p7)
IdentifierType AddHexahedron (const PointType &p0, const PointType &p1, const PointType &p2, const PointType &p3, const PointType &p4, const PointType &p5, const PointType &p6, const PointType &p7)
IdentifierType AddHexahedron (IdentifierType pointId0, IdentifierType pointId1, IdentifierType pointId2, IdentifierType pointId3, IdentifierType pointId4, IdentifierType pointId5, IdentifierType pointId6, IdentifierType pointId7)
IdentifierType AddHexahedron (const IdentifierArrayType &pointIds)
IdentifierType AddLine (const CoordinateType *p0, const CoordinateType *p1)
IdentifierType AddLine (const PointType &p0, const PointType &p1)
IdentifierType AddLine (IdentifierType pointId0, IdentifierType pointId1)
IdentifierType AddLine (const IdentifierArrayType &pointIds)
unsigned long AddObserver (const EventObject &event, Command *) const
unsigned long AddObserver (const EventObject &event, Command *)
IdentifierType AddPoint (const CoordinateType *p0)
IdentifierType AddPoint (const PointType &p0)
IdentifierType AddTetrahedron (const CoordinateType *p0, const CoordinateType *p1, const CoordinateType *p2, const CoordinateType *p3)
IdentifierType AddTetrahedron (const PointType &p0, const PointType &p1, const PointType &p2, const PointType &p3)
IdentifierType AddTetrahedron (IdentifierType pointId0, IdentifierType pointId1, IdentifierType pointId2, IdentifierType pointId3)
IdentifierType AddTetrahedron (const IdentifierArrayType &pointIds)
IdentifierType AddTriangle (const CoordinateType *p0, const CoordinateType *p1, const CoordinateType *p2)
IdentifierType AddTriangle (const PointType &p0, const PointType &p1, const PointType &p2)
IdentifierType AddTriangle (IdentifierType pointId0, IdentifierType pointId1, IdentifierType pointId2)
IdentifierType AddTriangle (const IdentifierArrayType &pointIds)
IdentifierType AddVertex (const CoordinateType *p0)
IdentifierType AddVertex (const PointType &p0)
IdentifierType AddVertex (IdentifierType pointId0)
IdentifierType AddVertex (const IdentifierArrayType &pointIds)
DataObjectPointerArraySizeType GetNumberOfOutputs () const
DataObjectPointerArrayGetOutputs ()
virtual const int & GetNumberOfThreads ()
virtual void SetNumberOfThreads (int _arg)
OutputMeshTypeGetOutput (unsigned int idx)
OutputMeshTypeGetOutput (void)
virtual const bool & GetReleaseDataBeforeUpdateFlag ()
virtual void ReleaseDataBeforeUpdateFlagOff ()
virtual void ReleaseDataBeforeUpdateFlagOn ()
virtual void SetReleaseDataBeforeUpdateFlag (bool _arg)
virtual bool GetReleaseDataFlag () const
void ReleaseDataFlagOff ()
void ReleaseDataFlagOn ()
virtual void SetReleaseDataFlag (bool flag)
virtual void GraftNthOutput (unsigned int idx, DataObject *output)
virtual void GraftOutput (DataObject *output)
 itkStaticConstMacro (MaxTopologicalDimension, unsigned int, MeshType::MaxTopologicalDimension)
 itkStaticConstMacro (PointDimension, unsigned int, MeshType::PointDimension)

Static Public Member Functions

static void BreakOnError ()
static Pointer New ()
static bool GetGlobalWarningDisplay ()
static void GlobalWarningDisplayOff ()
static void GlobalWarningDisplayOn ()
static void SetGlobalWarningDisplay (bool flag)

Protected Member Functions

 AutomaticTopologyMeshSource ()
virtual void CacheInputReleaseDataFlags ()
void GenerateData ()
void GenerateInputRequestedRegion ()
virtual void GenerateOutputInformation ()
virtual void GenerateOutputRequestedRegion (DataObject *output)
bool PrintObservers (std::ostream &os, Indent indent) const
void PrintSelf (std::ostream &os, Indent indent) const
virtual void PropagateResetPipeline ()
virtual void ReleaseInputs ()
virtual void RestoreInputReleaseDataFlags ()
void SetNumberOfInputs (unsigned int num)
void SetNumberOfOutputs (unsigned int num)
 ~AutomaticTopologyMeshSource ()
virtual void AddInput (DataObject *input)
virtual const unsigned int & GetNumberOfRequiredInputs ()
virtual void RemoveInput (DataObject *input)
virtual void SetNthInput (unsigned int num, DataObject *input)
virtual void SetNumberOfRequiredInputs (unsigned int _arg)
virtual void AddOutput (DataObject *output)
virtual const unsigned int & GetNumberOfRequiredOutputs ()
virtual void RemoveOutput (DataObject *output)
virtual void SetNthOutput (unsigned int num, DataObject *output)
virtual void SetNumberOfRequiredOutputs (unsigned int _arg)
const DataObjectGetInput (unsigned int idx) const
DataObjectGetInput (unsigned int idx)
const DataObjectGetOutput (unsigned int idx) const
virtual void PopBackInput ()
virtual void PopFrontInput ()
virtual void PushBackInput (const DataObject *input)
virtual void PushFrontInput (const DataObject *input)
virtual void PrintHeader (std::ostream &os, Indent indent) const
virtual void PrintTrailer (std::ostream &os, Indent indent) const

Protected Attributes

TimeStamp m_OutputInformationMTime
volatile int m_ReferenceCount
SimpleFastMutexLock m_ReferenceCountLock
bool m_Updating

Classes

class  IdentifierArrayEqualsFunction
class  IdentifierArrayHashFunction


Member Typedef Documentation

template<class TOutputMesh>
typedef CellType::CellAutoPointer itk::AutomaticTopologyMeshSource< TOutputMesh >::CellAutoPointer

Definition at line 126 of file itkAutomaticTopologyMeshSource.h.

template<class TOutputMesh>
typedef MeshType::CellType itk::AutomaticTopologyMeshSource< TOutputMesh >::CellType

Definition at line 123 of file itkAutomaticTopologyMeshSource.h.

template<class TOutputMesh>
typedef SmartPointer<const Self> itk::AutomaticTopologyMeshSource< TOutputMesh >::ConstPointer

Reimplemented from itk::MeshSource< TOutputMesh >.

Definition at line 118 of file itkAutomaticTopologyMeshSource.h.

template<class TOutputMesh>
typedef PointType::CoordRepType itk::AutomaticTopologyMeshSource< TOutputMesh >::CoordinateType

Definition at line 125 of file itkAutomaticTopologyMeshSource.h.

template<class TOutputMesh>
typedef DataObject::Pointer itk::MeshSource< TOutputMesh >::DataObjectPointer [inherited]

Some convenient typedefs.

Reimplemented from itk::ProcessObject.

Reimplemented in itk::SpatialObjectToPointSetFilter< TInputSpatialObject, TOutputPointSet >.

Definition at line 56 of file itkMeshSource.h.

typedef std::vector<DataObjectPointer> itk::ProcessObject::DataObjectPointerArray [inherited]

STL Array of SmartPointers to DataObjects

Definition at line 103 of file itkProcessObject.h.

typedef DataObjectPointerArray::size_type itk::ProcessObject::DataObjectPointerArraySizeType [inherited]

Size type of an std::vector

Definition at line 112 of file itkProcessObject.h.

template<class TOutputMesh>
typedef HexahedronCell< CellType > itk::AutomaticTopologyMeshSource< TOutputMesh >::HexahedronCell

Definition at line 134 of file itkAutomaticTopologyMeshSource.h.

template<class TOutputMesh>
typedef Array< IdentifierType > itk::AutomaticTopologyMeshSource< TOutputMesh >::IdentifierArrayType

Array of IdentifierType objects used to specify cells.

Definition at line 141 of file itkAutomaticTopologyMeshSource.h.

template<class TOutputMesh>
typedef unsigned long itk::AutomaticTopologyMeshSource< TOutputMesh >::IdentifierType

This class requires that the mesh being built use unsigned long as the identifier type for all its elements.

Definition at line 138 of file itkAutomaticTopologyMeshSource.h.

template<class TOutputMesh>
typedef LineCell< CellType > itk::AutomaticTopologyMeshSource< TOutputMesh >::LineCell

Definition at line 130 of file itkAutomaticTopologyMeshSource.h.

template<class TOutputMesh>
typedef MeshType::Pointer itk::AutomaticTopologyMeshSource< TOutputMesh >::MeshPointer

Definition at line 124 of file itkAutomaticTopologyMeshSource.h.

template<class TOutputMesh>
typedef TOutputMesh itk::AutomaticTopologyMeshSource< TOutputMesh >::MeshType

Hold on to the type information specified by the template parameters.

Definition at line 121 of file itkAutomaticTopologyMeshSource.h.

template<class TOutputMesh>
typedef OutputMeshType::Pointer itk::MeshSource< TOutputMesh >::OutputMeshPointer [inherited]

Reimplemented in itk::BalloonForceFilter< TInputMesh, TOutputMesh >, itk::BinaryMask3DMeshSource< TInputImage, TOutputMesh >, itk::ConnectedRegionsMeshFilter< TInputMesh, TOutputMesh >, itk::DeformableMesh3DFilter< TInputMesh, TOutputMesh >, itk::DeformableSimplexMesh3DBalloonForceFilter< TInputMesh, TOutputMesh >, itk::DeformableSimplexMesh3DFilter< TInputMesh, TOutputMesh >, itk::DeformableSimplexMesh3DGradientConstraintForceFilter< TInputMesh, TOutputMesh >, itk::RegularSphereMeshSource< TOutputMesh >, itk::SphereMeshSource< TOutputMesh >, itk::BinaryMaskToNarrowBandPointSetFilter< TInputImage, TOutputMesh >, itk::ImageToMeshFilter< TInputImage, TOutputMesh >, itk::ImageToParametricSpaceFilter< TInputImage, TOutputMesh >, itk::InteriorExteriorMeshFilter< TInputMesh, TOutputMesh, TSpatialFunction >, itk::ParametricSpaceToImageSpaceMeshFilter< TInputMesh, TOutputMesh >, itk::SimplexMeshAdaptTopologyFilter< TInputMesh, TOutputMesh >, itk::TransformMeshFilter< TInputMesh, TOutputMesh, TTransform >, itk::TriangleMeshToSimplexMeshFilter< TInputMesh, TOutputMesh >, itk::WarpMeshFilter< TInputMesh, TOutputMesh, TDeformationField >, itk::ConformalFlatteningMeshFilter< TPixelType >, itk::QuadEdgeMeshToQuadEdgeMeshFilter< TInputMesh, TOutputMesh >, and itk::VTKPolyDataReader< TOutputMesh >.

Definition at line 61 of file itkMeshSource.h.

template<class TOutputMesh>
typedef TOutputMesh itk::MeshSource< TOutputMesh >::OutputMeshType [inherited]

Reimplemented in itk::BalloonForceFilter< TInputMesh, TOutputMesh >, itk::BinaryMask3DMeshSource< TInputImage, TOutputMesh >, itk::ConnectedRegionsMeshFilter< TInputMesh, TOutputMesh >, itk::DeformableMesh3DFilter< TInputMesh, TOutputMesh >, itk::DeformableSimplexMesh3DBalloonForceFilter< TInputMesh, TOutputMesh >, itk::DeformableSimplexMesh3DFilter< TInputMesh, TOutputMesh >, itk::DeformableSimplexMesh3DGradientConstraintForceFilter< TInputMesh, TOutputMesh >, itk::RegularSphereMeshSource< TOutputMesh >, itk::SphereMeshSource< TOutputMesh >, itk::BinaryMaskToNarrowBandPointSetFilter< TInputImage, TOutputMesh >, itk::ImageToMeshFilter< TInputImage, TOutputMesh >, itk::ImageToParametricSpaceFilter< TInputImage, TOutputMesh >, itk::InteriorExteriorMeshFilter< TInputMesh, TOutputMesh, TSpatialFunction >, itk::ParametricSpaceToImageSpaceMeshFilter< TInputMesh, TOutputMesh >, itk::SimplexMeshAdaptTopologyFilter< TInputMesh, TOutputMesh >, itk::TransformMeshFilter< TInputMesh, TOutputMesh, TTransform >, itk::WarpMeshFilter< TInputMesh, TOutputMesh, TDeformationField >, itk::ConformalFlatteningMeshFilter< TPixelType >, itk::QuadEdgeMeshToQuadEdgeMeshFilter< TInputMesh, TOutputMesh >, and itk::VTKPolyDataReader< TOutputMesh >.

Definition at line 60 of file itkMeshSource.h.

template<class TOutputMesh>
typedef SmartPointer<Self> itk::AutomaticTopologyMeshSource< TOutputMesh >::Pointer

Reimplemented from itk::MeshSource< TOutputMesh >.

Definition at line 117 of file itkAutomaticTopologyMeshSource.h.

template<class TOutputMesh>
typedef itk::hash_map< PointType, IdentifierType, StructHashFunction< PointType > > itk::AutomaticTopologyMeshSource< TOutputMesh >::PointHashMap

hash_map typedefs.

Definition at line 148 of file itkAutomaticTopologyMeshSource.h.

template<class TOutputMesh>
typedef MeshType::PointType itk::AutomaticTopologyMeshSource< TOutputMesh >::PointType

Definition at line 122 of file itkAutomaticTopologyMeshSource.h.

template<class TOutputMesh>
typedef QuadrilateralCell< CellType > itk::AutomaticTopologyMeshSource< TOutputMesh >::QuadrilateralCell

Definition at line 132 of file itkAutomaticTopologyMeshSource.h.

template<class TOutputMesh>
typedef AutomaticTopologyMeshSource itk::AutomaticTopologyMeshSource< TOutputMesh >::Self

Standard "Self" typedef.

Reimplemented from itk::MeshSource< TOutputMesh >.

Definition at line 115 of file itkAutomaticTopologyMeshSource.h.

template<class TOutputMesh>
typedef MeshSource<TOutputMesh> itk::AutomaticTopologyMeshSource< TOutputMesh >::Superclass

Reimplemented from itk::MeshSource< TOutputMesh >.

Definition at line 116 of file itkAutomaticTopologyMeshSource.h.

template<class TOutputMesh>
typedef TetrahedronCell< CellType > itk::AutomaticTopologyMeshSource< TOutputMesh >::TetrahedronCell

Definition at line 133 of file itkAutomaticTopologyMeshSource.h.

template<class TOutputMesh>
typedef TriangleCell< CellType > itk::AutomaticTopologyMeshSource< TOutputMesh >::TriangleCell

Definition at line 131 of file itkAutomaticTopologyMeshSource.h.

template<class TOutputMesh>
typedef VertexCell< CellType > itk::AutomaticTopologyMeshSource< TOutputMesh >::VertexCell

Different kinds of cells.

Definition at line 129 of file itkAutomaticTopologyMeshSource.h.


Constructor & Destructor Documentation

template<class TOutputMesh>
itk::AutomaticTopologyMeshSource< TOutputMesh >::AutomaticTopologyMeshSource (  )  [protected]

template<class TOutputMesh>
itk::AutomaticTopologyMeshSource< TOutputMesh >::~AutomaticTopologyMeshSource (  )  [protected]


Member Function Documentation

virtual void itk::ProcessObject::AbortGenerateDataOff (  )  [virtual, inherited]

virtual void itk::ProcessObject::AbortGenerateDataOn (  )  [virtual, inherited]

Turn on and off the AbortGenerateData flag.

template<class TOutputMesh>
IdentifierType itk::AutomaticTopologyMeshSource< TOutputMesh >::AddHexahedron ( const CoordinateType p0,
const CoordinateType p1,
const CoordinateType p2,
const CoordinateType p3,
const CoordinateType p4,
const CoordinateType p5,
const CoordinateType p6,
const CoordinateType p7 
)

template<class TOutputMesh>
IdentifierType itk::AutomaticTopologyMeshSource< TOutputMesh >::AddHexahedron ( const PointType p0,
const PointType p1,
const PointType p2,
const PointType p3,
const PointType p4,
const PointType p5,
const PointType p6,
const PointType p7 
)

template<class TOutputMesh>
IdentifierType itk::AutomaticTopologyMeshSource< TOutputMesh >::AddHexahedron ( IdentifierType  pointId0,
IdentifierType  pointId1,
IdentifierType  pointId2,
IdentifierType  pointId3,
IdentifierType  pointId4,
IdentifierType  pointId5,
IdentifierType  pointId6,
IdentifierType  pointId7 
)

template<class TOutputMesh>
IdentifierType itk::AutomaticTopologyMeshSource< TOutputMesh >::AddHexahedron ( const IdentifierArrayType pointIds  ) 

Add the hexahedron specified by the four points, and return its ID. If the points are p0, p1, p2, and p3, then the following additional cells (represented here as ordered tuples) are created (if they don't already exist) and associated as boundaries, in the order given:

Vertices: (p0), (p1), (p2), (p3), (p4), (p5), (p6), (p7).

Lines: (p0, p1), (p2, p3), (p4, p5), (p6, p7), (p0, p2), (p1, p3), (p4, p6), (p5, p7), (p0, p4), (p1, p5), (p2, p6), (p3, p7).

Quadrilaterals: (0, 1, 2, 3), (4, 5, 6, 7), (0, 1, 4, 5), (2, 3, 6, 7), (0, 2, 4, 6), (1, 3, 5, 7),

In particular, if the points are connected topologically as follows

     p4------------p5
     | \          / |
     |  p0------p1  |
     |  |       |   |
     |  |       |   |
     |  p2------p3  |
     | /          \ |
     p6------------p7
   
then you would call, for instance, meshSource->AddQuadrilateral(p0, p1, p2, p3, p4, p5, p6, p7).

virtual void itk::ProcessObject::AddInput ( DataObject input  )  [protected, virtual, inherited]

template<class TOutputMesh>
IdentifierType itk::AutomaticTopologyMeshSource< TOutputMesh >::AddLine ( const CoordinateType p0,
const CoordinateType p1 
)

template<class TOutputMesh>
IdentifierType itk::AutomaticTopologyMeshSource< TOutputMesh >::AddLine ( const PointType p0,
const PointType p1 
)

template<class TOutputMesh>
IdentifierType itk::AutomaticTopologyMeshSource< TOutputMesh >::AddLine ( IdentifierType  pointId0,
IdentifierType  pointId1 
)

template<class TOutputMesh>
IdentifierType itk::AutomaticTopologyMeshSource< TOutputMesh >::AddLine ( const IdentifierArrayType pointIds  ) 

Add the line specified by the two points, and return its ID. The endpoints and their associated vertices are associated to the line in the order that they are specified the first time the function is called.

unsigned long itk::Object::AddObserver ( const EventObject event,
Command  
) const [inherited]

unsigned long itk::Object::AddObserver ( const EventObject event,
Command  
) [inherited]

Allow people to add/remove/invoke observers (callbacks) to any ITK object. This is an implementation of the subject/observer design pattern. An observer is added by specifying an event to respond to and an itk::Command to execute. It returns an unsigned long tag which can be used later to remove the event or retrieve the command. The memory for the Command becomes the responsibility of this object, so don't pass the same instance of a command to two different objects

virtual void itk::ProcessObject::AddOutput ( DataObject output  )  [protected, virtual, inherited]

template<class TOutputMesh>
IdentifierType itk::AutomaticTopologyMeshSource< TOutputMesh >::AddPoint ( CoordinateType  x0 = 0,
CoordinateType  x1 = 0,
CoordinateType  x2 = 0,
CoordinateType  x3 = 0,
CoordinateType  x4 = 0,
CoordinateType  x5 = 0 
)

Add the point with coordinates (x0, ..., xN) where N = PointDimension - 1. If N < 5, then any parameters after xN are ignored. If PointDimension > 6, then a point is generated with the first six coordinates equal to x0, ..., x5, and the rest set to 0.

template<class TOutputMesh>
IdentifierType itk::AutomaticTopologyMeshSource< TOutputMesh >::AddPoint ( const CoordinateType p0  )