X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=lib%2FcpExtensions%2FAlgorithms%2FPolyLineParametricPathToSimple3DCurve.h;fp=lib%2FcpExtensions%2FAlgorithms%2FPolyLineParametricPathToSimple3DCurve.h;h=0000000000000000000000000000000000000000;hb=2e142df11d6f312a2a2b5097b8da73571ed523e8;hp=5282e88c8e67c4a6d0794714689745743e12cec9;hpb=61b3659afe961ed248f30e26f9ca8f28fcfafddc;p=cpPlugins.git diff --git a/lib/cpExtensions/Algorithms/PolyLineParametricPathToSimple3DCurve.h b/lib/cpExtensions/Algorithms/PolyLineParametricPathToSimple3DCurve.h deleted file mode 100644 index 5282e88..0000000 --- a/lib/cpExtensions/Algorithms/PolyLineParametricPathToSimple3DCurve.h +++ /dev/null @@ -1,65 +0,0 @@ -// ------------------------------------------------------------------------- -// @author Leonardo Florez-Valencia (florez-l@javeriana.edu.co) -// ------------------------------------------------------------------------- - -#ifndef __cpExtensions__Algorithms__PolyLineParametricPathToSimple3DCurve__h__ -#define __cpExtensions__Algorithms__PolyLineParametricPathToSimple3DCurve__h__ - -#include -#include - -// ------------------------------------------------------------------------- -namespace cpExtensions -{ - namespace Algorithms - { - /** - */ - template< class _TPolyLine, class _TCurve > - class cpExtensions_EXPORT PolyLineParametricPathToSimple3DCurve - : public itk::ProcessObject - { - public: - // Basic types - typedef PolyLineParametricPathToSimple3DCurve Self; - typedef itk::ProcessObject Superclass; - typedef itk::SmartPointer< Self > Pointer; - typedef itk::SmartPointer< const Self > ConstPointer; - - public: - itkNewMacro( Self ); - itkTypeMacro( PolyLineParametricPathToSimple3DCurve, itk::ProcessObject ); - - itkGetConstMacro( NumberOfSamples, unsigned long ); - itkSetMacro( NumberOfSamples, unsigned long ); - - public: - _TPolyLine* GetInput( ); - const _TPolyLine* GetInput( ) const; - void SetInput( _TPolyLine* pl ); - - _TCurve* GetOutput( ); - const _TCurve* GetOutput( ) const; - - protected: - PolyLineParametricPathToSimple3DCurve( ); - virtual ~PolyLineParametricPathToSimple3DCurve( ); - - virtual void GenerateData( ) cpExtensions_OVERRIDE; - - private: - // Purposely not implemented - PolyLineParametricPathToSimple3DCurve( const Self& ); - void operator=( const Self& ); - - protected: - unsigned long m_NumberOfSamples; - }; - - } // ecapseman - -} // ecapseman - -#endif // __cpExtensions__Algorithms__PolyLineParametricPathToSimple3DCurve__h__ - -// eof - $RCSfile$