]> Creatis software - cpPlugins.git/blob - lib/cpPlugins/Interface/PointList.cxx
8c3f2321f047e42243fffe06bc0dbff386611ea9
[cpPlugins.git] / lib / cpPlugins / Interface / PointList.cxx
1 #include <cpPlugins/Interface/PointList.h>
2
3 // -------------------------------------------------------------------------
4 bool cpPlugins::Interface::PointList::
5 HaveEuclideanPoints( ) const
6 {
7   return( this->m_HaveEuclideanPoints );
8 }
9
10 // -------------------------------------------------------------------------
11 unsigned long cpPlugins::Interface::PointList::
12 GetNumberOfPoints( ) const
13 {
14   return( this->m_NumberOfPoints );
15 }
16
17 // -------------------------------------------------------------------------
18 void cpPlugins::Interface::PointList::
19 Clear( )
20 {
21   this->m_ITKObject = NULL;
22   this->m_VTKObject = NULL;
23   this->m_NumberOfPoints = 0;
24 }
25
26 // -------------------------------------------------------------------------
27 cpPlugins::Interface::PointList::
28 PointList( )
29   : Superclass( ),
30     m_HaveEuclideanPoints( true )
31 {
32   this->Clear( );
33 }
34
35 // -------------------------------------------------------------------------
36 cpPlugins::Interface::PointList::
37 ~PointList( )
38 {
39 }
40
41 // eof - $RCSfile$