]> Creatis software - bbtk.git/blobdiff - packages/vtk/src/bbvtkTransform.h
no message
[bbtk.git] / packages / vtk / src / bbvtkTransform.h
index 92b02200edd4d03f73bfb8b65ccfefcf5f2a1360..2a1594a3c978e6e038d7df1bfbba62ad14fb71ac 100644 (file)
@@ -3,8 +3,8 @@
 #include "bbtkAtomicBlackBox.h"
 #include "iostream"
 
-#include <vtkTransform.h>
-#include <vtkLinearTransform.h>
+#include "vtkTransform.h"
+//#include <vtkLinearTransform.h>
 
 namespace bbvtk
 {
@@ -14,14 +14,6 @@ namespace bbvtk
     public bbtk::AtomicBlackBox
   {
     BBTK_BLACK_BOX_INTERFACE(Transform,bbtk::AtomicBlackBox);
-    //==================================================================
-    /// User callback called in the box contructor
-    virtual void bbUserConstructor();
-    /// User callback called in the box copy constructor
-    //virtual void bbUserCopyConstructor();
-    /// User callback called in the box destructor
-    virtual void bbUserDestructor();
-    //==================================================================
     BBTK_DECLARE_INPUT(In,vtkLinearTransform *);
     BBTK_DECLARE_INPUT(Scale,std::vector<double>);
     BBTK_DECLARE_INPUT(RotateWXYZ,std::vector<double>);
@@ -31,11 +23,11 @@ namespace bbvtk
     BBTK_PROCESS(Process);
     void Process();
     
-    std::vector<double>        vecScale;
-    std::vector<double>        vecRotateWXYZ;
-    std::vector<double>        vecTranslate;
-    std::vector<double>        vecSpacing;
-    vtkTransform                       *result; 
+    std::vector<double>                vecScale;
+    std::vector<double>                vecRotateWXYZ;
+    std::vector<double>                vecTranslate;
+    std::vector<double>                vecSpacing;
+    vtkTransform               *result; 
 };
   
   BBTK_BEGIN_DESCRIBE_BLACK_BOX(Transform,bbtk::AtomicBlackBox);