X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=PackRecalage%2Fsrc%2FbbPackRecalageTransform2DBox.h;h=3d9dbbb62525f00ee0a0bb30da384d75418de222;hb=3707df370a2c5b61006233977fb91c5652e0ffea;hp=6a4ea9d2014b33c53c8c559ab5604131b8f7950b;hpb=056c44ebcefce5a0c1d0b5cd162a63d5805df456;p=creaRigidRegistration.git diff --git a/PackRecalage/src/bbPackRecalageTransform2DBox.h b/PackRecalage/src/bbPackRecalageTransform2DBox.h index 6a4ea9d..3d9dbbb 100644 --- a/PackRecalage/src/bbPackRecalageTransform2DBox.h +++ b/PackRecalage/src/bbPackRecalageTransform2DBox.h @@ -18,29 +18,28 @@ class bbPackRecalage_EXPORT Transform2DBox /*Point(x,y) -> Rotation Center*/ BBTK_DECLARE_INPUT(CenterPoint,std::vector); - /*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