-- Created on: 1994-02-17 -- Created by: Bruno DUMORTIER -- Copyright (c) 1994-1999 Matra Datavision -- Copyright (c) 1999-2014 OPEN CASCADE SAS -- -- This file is part of Open CASCADE Technology software library. -- -- This library is free software; you can redistribute it and/or modify it under -- the terms of the GNU Lesser General Public License version 2.1 as published -- by the Free Software Foundation, with special exception defined in the file -- OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT -- distribution for complete text of the license and disclaimer of any warranty. -- -- Alternatively, this file may be used under the terms of Open CASCADE -- commercial license or contractual agreement. class Profiler from GeomFill ---Purpose: Evaluation of the common BSplineProfile of a group -- of curves from Geom. All the curves will have the -- same degree, the same knot-vector, so the same -- number of poles. uses Array1OfReal from TColStd, Array1OfInteger from TColStd, Array1OfPnt from TColgp, Curve from Geom, SequenceOfCurve from TColGeom raises NotDone from StdFail, DomainError from Standard is Create returns Profiler from GeomFill; Delete(me:out) is virtual; ---C++: alias "Standard_EXPORT virtual ~GeomFill_Profiler(){Delete() ; }" AddCurve( me : in out; Curve : in Curve from Geom) is static; Perform(me : in out ; PTol : in Real from Standard) ---Purpose: Converts all curves to BSplineCurves. -- Set them to the common profile. -- is used to compare 2 knots. is virtual; Degree(me) returns Integer from Standard raises NotDone from StdFail ---Purpose: Raises if not yet perform is static; IsPeriodic(me) returns Boolean from Standard ---C++: inline is static; NbPoles(me) returns Integer from Standard raises NotDone from StdFail ---Purpose: Raises if not yet perform is static; Poles(me; Index : in Integer from Standard; Poles : in out Array1OfPnt from TColgp) ---Purpose: returns in the poles of the BSplineCurve -- from index adjusting to the current profile. raises NotDone from StdFail, ---Purpose: Raises if not yet perform DomainError from Standard ---Purpose: Raises if not in the range [1,NbCurves] -- if the length of is not equal to -- NbPoles(). is static; Weights(me; Index : in Integer from Standard; Weights : in out Array1OfReal from TColStd) ---Purpose: returns in the weights of the BSplineCurve -- from index adjusting to the current profile. raises NotDone from StdFail, ---Purpose: Raises if not yet perform DomainError from Standard ---Purpose: Raises if not in the range [1,NbCurves] or -- if the length of is not equal to -- NbPoles(). is static; NbKnots(me) returns Integer from Standard raises NotDone from StdFail ---Purpose: Raises if not yet perform is static; KnotsAndMults(me; Knots : in out Array1OfReal from TColStd; Mults : in out Array1OfInteger from TColStd) raises NotDone from StdFail, ---Purpose: Raises if not yet perform DomainError from Standard ---Purpose: Raises if the lengthes of and are -- not equal to NbKnots(). is static; Curve(me; Index : Integer from Standard) returns Curve from Geom ---C++: return const& ---C++: inline is static; fields mySequence : SequenceOfCurve from TColGeom is protected; myIsDone : Boolean from Standard is protected; myIsPeriodic : Boolean from Standard is protected; end Profiler;