]> Creatis software - creaRigidRegistration.git/blobdiff - PackRecalage/src/bbPackRecalageCalculateVectorBox.h
*** empty log message ***
[creaRigidRegistration.git] / PackRecalage / src / bbPackRecalageCalculateVectorBox.h
index 31086052ae920a897e1a49c9a60baae515ed344f..485612e7c5f6e50fd606d039a42595876a525332 100644 (file)
@@ -4,7 +4,7 @@
 #include "bbtkAtomicBlackBox.h"
 #include "iostream"
 
-#include "VectorMath.h"
+#include "PlanesOperations.h"
 
 namespace bbPackRecalage
 {
@@ -48,16 +48,23 @@ class bbPackRecalage_EXPORT CalculateVectorBox
   /*The rotation axis (this axis is defined by the cross product of the 2 vectors)*/
   BBTK_DECLARE_OUTPUT(TransformAxis, std::vector<double>);
 
-  
+  /*Scale difference in X*/
   BBTK_DECLARE_OUTPUT(OutScaleX,int);
+
+  /*Scale difference in Y*/
   BBTK_DECLARE_OUTPUT(OutScaleY,int);
+
+  /*Scale difference in Z*/
   BBTK_DECLARE_OUTPUT(OutScaleZ,int);
+
+  /*Rotation Angle*/
   BBTK_DECLARE_OUTPUT(OutAngle,double);
   BBTK_PROCESS(Process);
   void Process();
 
   private:
-         VectorMath *_vector;
+         
+         PlanesOperations *_vector;
 };
 
 BBTK_BEGIN_DESCRIBE_BLACK_BOX(CalculateVectorBox,bbtk::AtomicBlackBox);