]> Creatis software - creaRigidRegistration.git/blobdiff - PackRecalage/src/bbPackRecalageTransform2DBox.h
*** empty log message ***
[creaRigidRegistration.git] / PackRecalage / src / bbPackRecalageTransform2DBox.h
index 52288f8b00deb008049448d6bb7b994811d07f8f..d8ee00b72d1da8170bfa36e3e57557b0fb98f1b5 100644 (file)
@@ -18,10 +18,6 @@ class bbPackRecalage_EXPORT Transform2DBox
                /*Point(x,y) -> Rotation Center*/
                BBTK_DECLARE_INPUT(CenterPoint,std::vector<int>);
 
-               /*Vector(x,y) -> Axis Rotation Vector*/
-               BBTK_DECLARE_INPUT(Axis,std::vector<double>);
-
-
                /*Rotation angle*/
                BBTK_DECLARE_INPUT(Angle,double);
 
@@ -36,20 +32,14 @@ class bbPackRecalage_EXPORT Transform2DBox
                /*Scalation to be done int the z axis*/
                BBTK_DECLARE_INPUT(ScaleZ,double);
 
-               /*3D transformation on or off option*/
-               BBTK_DECLARE_INPUT(3D,bool);
-               
                /*Resultant vtkTransform*/
-               BBTK_DECLARE_OUTPUT(Out, vtkLinearTransform*);
+               BBTK_DECLARE_OUTPUT(Out, vtkTransform*);
 
                BBTK_PROCESS(Process);
                void Process();
                
                /*Class in charge of making the transformations*/
-               Transformer *transformer;
-
-               /*Boolean that defines if the transformation is in 3D or not. True = Transfomation is in 3D*/
-               bool _3D;
+               Transformer *transformer;               
 };
 
 BBTK_BEGIN_DESCRIBE_BLACK_BOX(Transform2DBox,bbtk::AtomicBlackBox);
@@ -58,13 +48,11 @@ BBTK_AUTHOR("va-perez@uniandes.edu.co");
 BBTK_DESCRIPTION("Given 2 points and an angle, it calculates the vtkTransform result after aplying the transformations, using the first point as base of the transformation");
 BBTK_CATEGORY("filter");
 BBTK_INPUT(Transform2DBox,CenterPoint,"Point (x,y,z) -> Rotation Center",std::vector<int>,"");
-BBTK_INPUT(Transform2DBox,Axis,"Vector (x,y,z) -> Axis Rotation Vector. Used only on 3D transformations.",std::vector<double>,"");
 BBTK_INPUT(Transform2DBox,Angle,"Rotation Angle",double,"");
 BBTK_INPUT(Transform2DBox,ScaleX,"Scale in X",double,"");
 BBTK_INPUT(Transform2DBox,ScaleY,"Scale in Y",double,"");
 BBTK_INPUT(Transform2DBox,ScaleZ,"Scale in Z",double,"");
-BBTK_INPUT(Transform2DBox,3D,"Boolean that defines if the transformation is in 3D or not. True = Transfomation is in 3D ",bool,"");
-BBTK_OUTPUT(Transform2DBox,Out,"Linear Transform filter",vtkLinearTransform*,"");
+BBTK_OUTPUT(Transform2DBox,Out,"Linear Transform filter",vtkTransform*,"");
 BBTK_END_DESCRIBE_BLACK_BOX(Transform2DBox);
 }
 // EO namespace bbPackRecalage