]> Creatis software - cpPlugins.git/blobdiff - lib/cpExtensions/Algorithms/IsoImageSlicer.hxx
...
[cpPlugins.git] / lib / cpExtensions / Algorithms / IsoImageSlicer.hxx
similarity index 82%
rename from lib/cpPlugins/Extensions/Algorithms/IsoImageSlicer.hxx
rename to lib/cpExtensions/Algorithms/IsoImageSlicer.hxx
index fd90d02a4022f0eaa61ebe81a258241369e61a05..ff72c1a93e37964583d96ce9efd049dd16af146f 100644 (file)
@@ -2,12 +2,12 @@
 // @author Leonardo Florez-Valencia (florez-l@javeriana.edu.co)
 // -------------------------------------------------------------------------
 
-#ifndef __CPPLUGINS__EXTENSIONS__ALGORITHMS__ISOIMAGESLICER__HXX__
-#define __CPPLUGINS__EXTENSIONS__ALGORITHMS__ISOIMAGESLICER__HXX__
+#ifndef __CPEXTENSIONS__ALGORITHMS__ISOIMAGESLICER__HXX__
+#define __CPEXTENSIONS__ALGORITHMS__ISOIMAGESLICER__HXX__
 
 // -------------------------------------------------------------------------
 template< class R, class I >
-unsigned long cpPlugins::Extensions::Algorithms::BaseImageSlicer< R, I >::
+unsigned long cpExtensions::Algorithms::BaseImageSlicer< R, I >::
 GetMTime( ) const
 {
   unsigned long t = this->Superclass::GetMTime( );
@@ -22,9 +22,9 @@ GetMTime( ) const
 
 // -------------------------------------------------------------------------
 template< class R, class I >
-const typename cpPlugins::Extensions::Algorithms::BaseImageSlicer< R, I >::
+const typename cpExtensions::Algorithms::BaseImageSlicer< R, I >::
 TInterpolateFunction*
-cpPlugins::Extensions::Algorithms::BaseImageSlicer< R, I >::
+cpExtensions::Algorithms::BaseImageSlicer< R, I >::
 GetInterpolator( ) const
 {
   return( this->m_Slicer->GetInterpolator( ) );
@@ -32,8 +32,8 @@ GetInterpolator( ) const
 
 // -------------------------------------------------------------------------
 template< class R, class I >
-const typename cpPlugins::Extensions::Algorithms::BaseImageSlicer< R, I >::
-TMatrix& cpPlugins::Extensions::Algorithms::BaseImageSlicer< R, I >::
+const typename cpExtensions::Algorithms::BaseImageSlicer< R, I >::
+TMatrix& cpExtensions::Algorithms::BaseImageSlicer< R, I >::
 GetRotation( ) const
 {
   return( this->m_Transform->GetMatrix( ) );
@@ -41,8 +41,8 @@ GetRotation( ) const
 
 // -------------------------------------------------------------------------
 template< class R, class I >
-const typename cpPlugins::Extensions::Algorithms::BaseImageSlicer< R, I >::
-TVector& cpPlugins::Extensions::Algorithms::BaseImageSlicer< R, I >::
+const typename cpExtensions::Algorithms::BaseImageSlicer< R, I >::
+TVector& cpExtensions::Algorithms::BaseImageSlicer< R, I >::
 GetTranslation( ) const
 {
   return( this->m_Transform->GetOffset( ) );
@@ -50,7 +50,7 @@ GetTranslation( ) const
 
 // -------------------------------------------------------------------------
 template< class R, class I >
-void cpPlugins::Extensions::Algorithms::BaseImageSlicer< R, I >::
+void cpExtensions::Algorithms::BaseImageSlicer< R, I >::
 SetInterpolator( TInterpolateFunction* f )
 {
   this->m_Slicer->SetInterpolator( f );
@@ -60,7 +60,7 @@ SetInterpolator( TInterpolateFunction* f )
 // -------------------------------------------------------------------------
 template< class R, class I >
 template< class M >
-void cpPlugins::Extensions::Algorithms::BaseImageSlicer< R, I >::
+void cpExtensions::Algorithms::BaseImageSlicer< R, I >::
 SetRotation( const M& r )
 {
   TMatrix rotation;
@@ -74,7 +74,7 @@ SetRotation( const M& r )
 // -------------------------------------------------------------------------
 template< class R, class I >
 template< class V >
-void cpPlugins::Extensions::Algorithms::BaseImageSlicer< R, I >::
+void cpExtensions::Algorithms::BaseImageSlicer< R, I >::
 SetTranslation( const V& t )
 {
   TVector off;
@@ -86,7 +86,7 @@ SetTranslation( const V& t )
 
 // -------------------------------------------------------------------------
 template< class R, class I >
-void cpPlugins::Extensions::Algorithms::BaseImageSlicer< R, I >::
+void cpExtensions::Algorithms::BaseImageSlicer< R, I >::
 SetSize( TScalar s )
 {
   this->m_Size.Fill( s );
@@ -95,7 +95,7 @@ SetSize( TScalar s )
 
 // -------------------------------------------------------------------------
 template< class R, class I >
-cpPlugins::Extensions::Algorithms::BaseImageSlicer< R, I >::
+cpExtensions::Algorithms::BaseImageSlicer< R, I >::
 BaseImageSlicer( )
   : Superclass( ),
     m_SizeFromMaximum( false ),
@@ -123,21 +123,21 @@ BaseImageSlicer( )
 
 // -------------------------------------------------------------------------
 template< class R, class I >
-cpPlugins::Extensions::Algorithms::BaseImageSlicer< R, I >::
+cpExtensions::Algorithms::BaseImageSlicer< R, I >::
 ~BaseImageSlicer( )
 {
 }
 
 // -------------------------------------------------------------------------
 template< class R, class I >
-void cpPlugins::Extensions::Algorithms::BaseImageSlicer< R, I >::
+void cpExtensions::Algorithms::BaseImageSlicer< R, I >::
 GenerateOutputInformation( )
 {
 }
 
 // -------------------------------------------------------------------------
 template< class R, class I >
-void cpPlugins::Extensions::Algorithms::BaseImageSlicer< R, I >::
+void cpExtensions::Algorithms::BaseImageSlicer< R, I >::
 GenerateInputRequestedRegion( )
 {
   TImage* input = const_cast< TImage* >( this->GetInput( ) );
@@ -147,7 +147,7 @@ GenerateInputRequestedRegion( )
 
 // -------------------------------------------------------------------------
 template< class R, class I >
-void cpPlugins::Extensions::Algorithms::BaseImageSlicer< R, I >::
+void cpExtensions::Algorithms::BaseImageSlicer< R, I >::
 GenerateData( )
 {
   const TImage* input = this->GetInput( );
@@ -228,6 +228,6 @@ GenerateData( )
   this->GraftOutput( this->m_Collapsor->GetOutput( ) );
 }
 
-#endif // __CPPLUGINS__EXTENSIONS__ALGORITHMS__ISOIMAGESLICER__HXX__
+#endif // __CPEXTENSIONS__ALGORITHMS__ISOIMAGESLICER__HXX__
 
 // eof - $RCSfile$