[Insight-developers] itkAffineTransformMeshFilter

Luis Ibanez ibanez@cs.unc.edu
Tue, 27 Feb 2001 11:43:23 -0500


Hi,

There is a new MeshFilter checked in:   

    AffineTransformMeshFilter.

It applies an AffineTransform to all the points of an input mesh.

So far, it is not passing the rest of the Mesh information
as (maybe) it should be expected to do.

What is the efficient way to pass the rest of the Mesh data ?

My Guess is that all the containers should be used to 
transfer their data, something like:


outputMesh->m_PointDataContainer->Copy(
                       inputMesh->m_PointDataContainer->Begin()
                       inputMesh->m_PointDataContainer->End()       );


and the similar for :

    m_CellsContainer
    m_CellDataContainer
    m_CellLinksContainer

Is there an equivalen of Copy() in the containers like VectorContainer ?

Thanks


Luis