]> Creatis software - cpPlugins.git/blob - lib/cpPlugins/Interface/Mesh.cxx
"Extesions" code reorganized
[cpPlugins.git] / lib / cpPlugins / Interface / Mesh.cxx
1 #include <cpPlugins/Interface/Mesh.h>
2
3 #include <vtkMapper.h>
4
5 #include <cpPlugins/Extensions/DataStructures/QuadEdgeMesh.h>
6 #include <cpPlugins/Extensions/Visualization/OpenGLMeshMapper.h>
7
8 // -------------------------------------------------------------------------
9 cpPlugins::Interface::Mesh::
10 Mesh( )
11   : Superclass( ),
12     m_Mapper( NULL )
13 {
14 }
15
16 // -------------------------------------------------------------------------
17 cpPlugins::Interface::Mesh::
18 ~Mesh( )
19 {
20   if( this->m_Mapper != NULL ) this->m_Mapper->Delete( );
21 }
22
23 // -------------------------------------------------------------------------
24 std::string cpPlugins::Interface::Mesh::
25 GetClassName( ) const
26 {
27   return( "cpPlugins::Interface::Mesh" );
28 }
29
30 // -------------------------------------------------------------------------
31 void cpPlugins::Interface::Mesh::
32 SetDataObject( itk::DataObject* dobj )
33 {
34   this->Superclass::SetDataObject( dobj );
35   
36   // WARNING: Only 2 and 3 dimensions at this moment
37   using namespace cpPlugins::Extensions;
38   typedef DataStructures::QuadEdgeMesh< float, 2 >  _TF2;
39   typedef DataStructures::QuadEdgeMesh< double, 2 > _TD2;
40   typedef DataStructures::QuadEdgeMesh< float, 3 >  _TF3;
41   typedef DataStructures::QuadEdgeMesh< double, 3 > _TD3;
42
43   if     ( dynamic_cast< _TF2* >( dobj ) ) this->_Map< _TF2 >( );
44   else if( dynamic_cast< _TD2* >( dobj ) ) this->_Map< _TD2 >( );
45   else if( dynamic_cast< _TF3* >( dobj ) ) this->_Map< _TF3 >( );
46   else if( dynamic_cast< _TD3* >( dobj ) ) this->_Map< _TD3 >( );
47 }
48
49 // -------------------------------------------------------------------------
50 vtkMapper* cpPlugins::Interface::Mesh::
51 GetVTKMapper( ) const
52 {
53   return( this->m_Mapper );
54 }
55
56 // -------------------------------------------------------------------------
57 template< class M >
58 void cpPlugins::Interface::Mesh::
59 _Map( )
60 {
61   typedef
62     cpPlugins::Extensions::Visualization::OpenGLMeshMapper< M >
63     _TMapper;
64
65   if( this->m_Mapper != NULL ) this->m_Mapper->Delete( );
66   M* mesh = dynamic_cast< M* >( this->Superclass::GetDataObject( ) );
67   _TMapper* mapper = _TMapper::New( );
68   mapper->SetInputData( mesh );
69   this->m_Mapper = mapper;
70 }
71
72 // eof - $RCSfile$