From d3b7582d2f73c17d98dba277f08c9eb3ae02de47 Mon Sep 17 00:00:00 2001 From: Benjamin Bihler Date: Mon, 18 Jan 2016 14:01:56 +0100 Subject: [PATCH] 0027088: Documentation of add method of GeomConvert_CompCurveToBSplineCurve lacks speed hint Improved documentation --- src/GeomConvert/GeomConvert_CompCurveToBSplineCurve.hxx | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/GeomConvert/GeomConvert_CompCurveToBSplineCurve.hxx b/src/GeomConvert/GeomConvert_CompCurveToBSplineCurve.hxx index 484aae54aa..fa3d6fdef1 100644 --- a/src/GeomConvert/GeomConvert_CompCurveToBSplineCurve.hxx +++ b/src/GeomConvert/GeomConvert_CompCurveToBSplineCurve.hxx @@ -50,6 +50,11 @@ public: //! is used to check continuity and decrease //! Multiplicity at the common Knot until MinM //! if MinM = 0, the common Knot can be removed + //! + //! WithRatio defines whether the resulting curve should have a uniform + //! parameterization. Setting WithRatio to Standard_False may greatly + //! decrease the speed of algorithms like CPnts_AbscissaPoint::AdvPerform + //! when applied to the resulting curve. Standard_EXPORT Standard_Boolean Add (const Handle(Geom_BoundedCurve)& NewCurve, const Standard_Real Tolerance, const Standard_Boolean After = Standard_False, const Standard_Boolean WithRatio = Standard_True, const Standard_Integer MinM = 0); Standard_EXPORT Handle(Geom_BSplineCurve) BSplineCurve() const;