]> Creatis software - creaRigidRegistration.git/blobdiff - PackRecalage/src/bbPackRecalageTransform2DBox.h
*** empty log message ***
[creaRigidRegistration.git] / PackRecalage / src / bbPackRecalageTransform2DBox.h
index 6a4ea9d2014b33c53c8c559ab5604131b8f7950b..3d9dbbb62525f00ee0a0bb30da384d75418de222 100644 (file)
@@ -18,29 +18,28 @@ class bbPackRecalage_EXPORT Transform2DBox
                /*Point(x,y) -> Rotation Center*/
                BBTK_DECLARE_INPUT(CenterPoint,std::vector<int>);
 
-
                /*Rotation angle*/
                BBTK_DECLARE_INPUT(Angle,double);
 
                
-               /*Scalation to be done int the x axis*/
+               /*Scalation to be done in the x axis*/
                BBTK_DECLARE_INPUT(ScaleX,double);
 
                
-               /*Scalation to be done int the y axis*/
+               /*Scalation to be done in the y axis*/
                BBTK_DECLARE_INPUT(ScaleY,double);
 
-               /*Scalation to be done int the z axis*/
+               /*Scalation to be done in the z axis*/
                BBTK_DECLARE_INPUT(ScaleZ,double);
-               
+
                /*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;
+               Transformer *transformer;               
 };
 
 BBTK_BEGIN_DESCRIBE_BLACK_BOX(Transform2DBox,bbtk::AtomicBlackBox);
@@ -53,7 +52,7 @@ 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_OUTPUT(Transform2DBox,Out,"vtk Transform filter ",vtkLinearTransform*,"");
+BBTK_OUTPUT(Transform2DBox,Out,"Linear Transform filter",vtkTransform*,"");
 BBTK_END_DESCRIBE_BLACK_BOX(Transform2DBox);
 }
 // EO namespace bbPackRecalage