x= mpC->GetX() - mpA->GetX();
                y= mpC->GetY() - mpA->GetY();
                _angle= atan(y/x)*180/(3.14159265);
-               //cout << "Scale" <<_radio <<endl;
-               //cout << "Angle" <<_angle <<endl;
+               cout << "Scale" <<_radio <<endl;
+               cout << "Angle" <<_angle <<endl;
+               cout<< "Center"<<_centerX<<","<<_centerY<<endl;
        } 
        else 
        {
 double manualContourModelRotationTool::getAngle()
 {
        return _angle;
+}
+
+
+std::vector<double> manualContourModelRotationTool::getCenter()
+{
+       manualPoint *mpCenter   = GetManualPoint(0);
+       std::vector<double> centro(2,0);
+       centro[0]=mpCenter->GetX();
+       centro[1]=mpCenter->GetY();
+       return centro;
+
 }
\ No newline at end of file