Salome HOME
Issue #1834: Fix length of lines
[modules/shaper.git] / src / GeomAPI / GeomAPI_Circ.cpp
index 4346391bd457e6cec033ed857763870f12106d63..8988870caa4353d03e5cbeb454513e61837cd08a 100644 (file)
@@ -90,7 +90,8 @@ const bool GeomAPI_Circ::parameter(const std::shared_ptr<GeomAPI_Pnt> thePoint,
                                    double& theParameter) const
 {
   Handle(Geom_Circle) aCurve = new Geom_Circle(*MY_CIRC);
-  return GeomLib_Tool::Parameter(aCurve, thePoint->impl<gp_Pnt>(), theTolerance, theParameter) == Standard_True;
+  return GeomLib_Tool::Parameter(aCurve, thePoint->impl<gp_Pnt>(), 
+                                 theTolerance, theParameter) == Standard_True;
 }
 
 //=================================================================================================