]> Creatis software - bbtk.git/blobdiff - packages/vtk/src/bbvtkTransform.h
.
[bbtk.git] / packages / vtk / src / bbvtkTransform.h
index 85b979b187841ba1fa83a8834974dfb1111061b8..760cce4cb5d8fac6c9105e66cfbabce38a4c223b 100644 (file)
@@ -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,10 +23,10 @@ namespace bbvtk
     BBTK_PROCESS(Process);
     void Process();
     
-    std::vector<double>        vecScale;
-    std::vector<double>        vecRotateWXYZ;
-    std::vector<double>        vecTranslate;
-    std::vector<double>        vecSpacing;
+    std::vector<double>                vecScale;
+    std::vector<double>                vecRotateWXYZ;
+    std::vector<double>                vecTranslate;
+    std::vector<double>                vecSpacing;
     vtkTransform                       *result; 
 };