X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FHYDROData%2FHYDROData_BSplineOperation.h;h=093711a3dfe777716d03c19abb3b621b68de2c07;hb=13ef2433b28b41ed4d7338a31839a49c8b599ad7;hp=6c91bf864bc0a74e9b20c90b4ee6e718e1bc727d;hpb=b0759ef35e28020af9766fc25ae9b8796f851b80;p=modules%2Fhydro.git diff --git a/src/HYDROData/HYDROData_BSplineOperation.h b/src/HYDROData/HYDROData_BSplineOperation.h index 6c91bf86..093711a3 100644 --- a/src/HYDROData/HYDROData_BSplineOperation.h +++ b/src/HYDROData/HYDROData_BSplineOperation.h @@ -26,8 +26,10 @@ public: //! Creates a spline by list of coordinates: pairs X and Y //! \param thePoints coordinates of curve //! \param theIsClosed flag indicating that the result spline should be closed + //! \param theTolerance flag indicating the tolerance to skip equal points HYDROData_BSplineOperation( const NCollection_Sequence& thePoints, - const bool theIsClosed ); + const bool theIsClosed, + const double theTolerance ); //! Returns the BSpline curve passing through the points //! \returns Null if Computation of BSpline was failed @@ -35,7 +37,7 @@ public: //! Performs conversion from BSpline curve to QPainterPath made from Bezier curves //! \returns computed PainterPath, not stored in this class, so calling of this method is not fast - QPainterPath ComputePath() const; + void ComputePath( QPainterPath& thePath ) const; private: Handle(Geom_BSplineCurve) myCurve; ///< resulting BSpline, null if something is wrong