mirror of
https://github.com/Open-Cascade-SAS/OCCT.git
synced 2026-07-13 15:19:13 +08:00
1. Approximation of derivative (by Taylor-series and by three points). 2. Some methods (Degree(), GetType(), D0(), D3(), DN()) are added. 3. Getting of subInterval's boundaries. 4. Algorithm for checking if 1st derivative is equal to zero is amended. 5. Cases are controlled when extrema or Project point do not exist. 6. GetNormal() function for gp_Vec2d was added. 7. Computing of Value, D0, D1, D2 and D3 for offset curves was changed. 8. Limitation of tolerance for derivative computing was added. 9. Methods for computing trihedron in singularity point are added. 10. Test tests/bugs/moddata_3/bug23706 is added. 11. Restriction on the LastParameter for visualization of 3-D curves. Calling PlotCurve(...) function for last interval. 12. LProp package is modified for tangent computing in singularity point (LProp_CLProps, LProp_SLProps). 13. Added test cases for issue. Deleting bad test cases for this fix
253 lines
8.8 KiB
Plaintext
Executable File
253 lines
8.8 KiB
Plaintext
Executable File
-- Created on: 1995-07-17
|
|
-- Created by: Modelistation
|
|
-- Copyright (c) 1995-1999 Matra Datavision
|
|
-- Copyright (c) 1999-2012 OPEN CASCADE SAS
|
|
--
|
|
-- The content of this file is subject to the Open CASCADE Technology Public
|
|
-- License Version 6.5 (the "License"). You may not use the content of this file
|
|
-- except in compliance with the License. Please obtain a copy of the License
|
|
-- at http://www.opencascade.org and read it completely before using this file.
|
|
--
|
|
-- The Initial Developer of the Original Code is Open CASCADE S.A.S., having its
|
|
-- main offices at: 1, place des Freres Montgolfier, 78280 Guyancourt, France.
|
|
--
|
|
-- The Original Code and all software distributed under the License is
|
|
-- distributed on an "AS IS" basis, without warranty of any kind, and the
|
|
-- Initial Developer hereby disclaims all such warranties, including without
|
|
-- limitation, any warranties of merchantability, fitness for a particular
|
|
-- purpose or non-infringement. Please see the License for the specific terms
|
|
-- and conditions governing the rights and limitations under the License.
|
|
|
|
|
|
class CurveTool from HLRBRep
|
|
|
|
uses
|
|
Array1OfReal from TColStd,
|
|
Shape from GeomAbs,
|
|
CurveType from GeomAbs,
|
|
Vec2d from gp,
|
|
Pnt2d from gp,
|
|
Circ2d from gp,
|
|
Elips2d from gp,
|
|
Hypr2d from gp,
|
|
Parab2d from gp,
|
|
Lin2d from gp,
|
|
BezierCurve from Geom2d,
|
|
BSplineCurve from Geom2d
|
|
|
|
raises
|
|
OutOfRange from Standard,
|
|
NoSuchObject from Standard,
|
|
DomainError from Standard
|
|
|
|
is
|
|
--
|
|
-- Global methods - Apply to the whole curve.
|
|
--
|
|
|
|
FirstParameter(myclass; C: Address from Standard)
|
|
returns Real from Standard;
|
|
---C++: inline
|
|
|
|
LastParameter(myclass; C: Address from Standard)
|
|
returns Real from Standard;
|
|
---C++: inline
|
|
|
|
--
|
|
-- Services to break the curves to the expected continuity
|
|
--
|
|
-- If for example you need the curve to be C2 and the method
|
|
-- Continuity returns you something lower than C2 (say C1 for
|
|
-- example).
|
|
--
|
|
-- First compute the number of intervals with the requested
|
|
-- continuity with the method NbIntervals(). Note that if the
|
|
-- continuity is higher than the one you need NbIntervals will
|
|
-- return 1.
|
|
--
|
|
-- Then you get the parameters bounding the intervals with the
|
|
-- method Intervals, using an array of length at least
|
|
-- NbIntervals()+1.
|
|
--
|
|
-- If you need to create a curve with a restricted span you can
|
|
-- use the method Trim().
|
|
|
|
|
|
Continuity(myclass; C: Address from Standard)
|
|
returns Shape from GeomAbs;
|
|
---Purpose:
|
|
---C++: inline
|
|
|
|
NbIntervals(myclass; C: Address from Standard)
|
|
returns Integer from Standard;
|
|
---Purpose: Returns the number of intervals for continuity
|
|
-- <S>. May be one if Continuity(myclass) >= <S>
|
|
---C++: inline
|
|
|
|
Intervals(myclass; C : Address from Standard;
|
|
T : in out Array1OfReal from TColStd)
|
|
---Purpose: Stores in <T> the parameters bounding the intervals
|
|
-- of continuity <S>.
|
|
--
|
|
-- The array must provide enough room to accomodate
|
|
-- for the parameters. i.e. T.Length() > NbIntervals()
|
|
raises
|
|
OutOfRange from Standard;
|
|
---C++: inline
|
|
|
|
GetInterval (myclass; C : Address from Standard
|
|
; Index : Integer from Standard
|
|
; Tab : Array1OfReal from TColStd
|
|
; U1, U2 : out Real from Standard);
|
|
---Purpose : output the bounds of interval of index <Index>
|
|
-- used if Type == Composite.
|
|
---C++: inline
|
|
|
|
|
|
IsClosed(myclass; C: Address from Standard)
|
|
returns Boolean from Standard;
|
|
---C++: inline
|
|
|
|
IsPeriodic(myclass; C: Address from Standard)
|
|
returns Boolean from Standard;
|
|
---C++: inline
|
|
|
|
Period(myclass; C: Address from Standard)
|
|
returns Real from Standard
|
|
raises DomainError from Standard; -- if the curve is not periodic
|
|
---C++: inline
|
|
|
|
Value(myclass; C: Address from Standard; U : Real)
|
|
returns Pnt2d from gp;
|
|
--- Purpose : Computes the point of parameter U on the curve.
|
|
---C++: inline
|
|
|
|
D0 (myclass; C : Address from Standard;
|
|
U : Real from Standard;
|
|
P : out Pnt2d from gp);
|
|
--- Purpose : Computes the point of parameter U on the curve.
|
|
---C++: inline
|
|
|
|
D1 (myclass; C : Address from Standard;
|
|
U : Real from Standard;
|
|
P : out Pnt2d from gp;
|
|
V : out Vec2d from gp)
|
|
--- Purpose : Computes the point of parameter U on the curve
|
|
-- with its first derivative.
|
|
raises DomainError from Standard;
|
|
--- Purpose : Raised if the continuity of the current interval
|
|
-- is not C1.
|
|
---C++: inline
|
|
|
|
D2 (myclass; C : Address from Standard;
|
|
U : Real from Standard;
|
|
P : out Pnt2d from gp;
|
|
V1, V2 : out Vec2d from gp)
|
|
--- Purpose :
|
|
-- Returns the point P of parameter U, the first and second
|
|
-- derivatives V1 and V2.
|
|
raises DomainError from Standard;
|
|
--- Purpose : Raised if the continuity of the current interval
|
|
-- is not C2.
|
|
---C++: inline
|
|
|
|
D3 (myclass; C : Address from Standard;
|
|
U : Real from Standard;
|
|
P : out Pnt2d from gp;
|
|
V1, V2, V3 : out Vec2d from gp)
|
|
--- Purpose :
|
|
-- Returns the point P of parameter U, the first, the second
|
|
-- and the third derivative.
|
|
raises DomainError from Standard;
|
|
--- Purpose : Raised if the continuity of the current interval
|
|
-- is not C3.
|
|
---C++: inline
|
|
|
|
DN (myclass; C : Address from Standard;
|
|
U : Real from Standard;
|
|
N : Integer from Standard)
|
|
returns Vec2d from gp
|
|
--- Purpose :
|
|
-- The returned vector gives the value of the derivative for the
|
|
-- order of derivation N.
|
|
raises
|
|
DomainError from Standard,
|
|
--- Purpose : Raised if the continuity of the current interval
|
|
-- is not CN.
|
|
OutOfRange from Standard;
|
|
--- Purpose : Raised if N < 1.
|
|
---C++: inline
|
|
|
|
Resolution(myclass; C : Address from Standard;
|
|
R3d : Real from Standard)
|
|
returns Real from Standard;
|
|
---Purpose : Returns the parametric resolution corresponding
|
|
-- to the real space resolution <R3d>.
|
|
---C++: inline
|
|
|
|
GetType(myclass; C: Address from Standard)
|
|
returns CurveType from GeomAbs;
|
|
---Purpose: Returns the type of the curve in the current
|
|
-- interval : Line, Circle, Ellipse, Hyperbola,
|
|
-- Parabola, BezierCurve, BSplineCurve, OtherCurve.
|
|
---C++: inline
|
|
|
|
TheType(myclass; C: Address from Standard)
|
|
returns CurveType from GeomAbs;
|
|
---Purpose: Returns the type of the curve in the current
|
|
-- interval : Line, Circle, Ellipse, Hyperbola,
|
|
-- Parabola, BezierCurve, BSplineCurve, OtherCurve.
|
|
---C++: inline
|
|
|
|
--
|
|
-- The following methods must be called when GetType returned
|
|
-- the corresponding type.
|
|
--
|
|
|
|
Line(myclass; C: Address from Standard) returns Lin2d from gp
|
|
raises NoSuchObject from Standard;
|
|
---C++: inline
|
|
|
|
Circle(myclass; C: Address from Standard) returns Circ2d from gp
|
|
raises NoSuchObject from Standard;
|
|
---C++: inline
|
|
|
|
Ellipse(myclass; C: Address from Standard) returns Elips2d from gp
|
|
raises NoSuchObject from Standard;
|
|
---C++: inline
|
|
|
|
Hyperbola(myclass; C: Address from Standard) returns Hypr2d from gp
|
|
raises NoSuchObject from Standard;
|
|
---C++: inline
|
|
|
|
Parabola(myclass; C: Address from Standard) returns Parab2d from gp
|
|
raises NoSuchObject from Standard;
|
|
---C++: inline
|
|
|
|
Bezier(myclass; C: Address from Standard)
|
|
returns BezierCurve from Geom2d
|
|
raises NoSuchObject from Standard;
|
|
---C++: inline
|
|
|
|
BSpline(myclass; C: Address from Standard)
|
|
returns BSplineCurve from Geom2d
|
|
raises NoSuchObject from Standard;
|
|
---C++: inline
|
|
|
|
EpsX(myclass; C:Address from Standard)
|
|
---C++: inline
|
|
returns Real from Standard;
|
|
|
|
NbSamples(myclass; C : Address from Standard;
|
|
U0,U1: Real from Standard)
|
|
returns Integer from Standard;
|
|
|
|
NbSamples(myclass; C: Address from Standard)
|
|
returns Integer from Standard;
|
|
|
|
Degree(myclass; C: Address from Standard)
|
|
returns Integer from Standard;
|
|
---C++: inline
|
|
|
|
end CurveTool;
|