Salome HOME
OCC functionality moving out from the widget
[modules/hydro.git] / src / HYDROCurveCreator / CurveCreator_AISCurve.cxx
index dde3a4167d9b3fd0aad7535de274ade133c51a9c..923d0384402d7963f59673d7658f8e34a4b7521d 100644 (file)
@@ -51,14 +51,6 @@ void CurveCreator_AISCurve::getPoint( const int theISection, const int theIPoint
   double anX, anY, aZ;
   myCurve->getCoordinates( theISection, theIPoint, anX, anY, aZ );
   thePoint = gp_Pnt( anX, anY, aZ);
-  /*
-  double anX, anY, aZ;
-
-  std::deque<float> aPoint = myCurve->getPoint( theSectionId, thePointId );
-  anX = aPoint[0];
-  anY = aPoint[1];
-  aZ  = aPoint[2];
-  thePoint = gp_Pnt( anX, anY, aZ);*/
 }
 
 #define MAKE_BUILDER_USE