1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
|
-- File: ProjPCurGen.cdl
-- Created: Tue Oct 13 18:27:03 1992
-- Author: Laurent BUCHARD
-- <lbr@sdsun2>
---Copyright: Matra Datavision 1992
generic class ProjPCurGen from IntCurve (
TheCurve as any;
TheCurveTool as any) -- as CurveTool from IntCurve(TheCurve)
---Purpose: this class provide a tool which computes the parameter
-- of a point near a parametric curve.
---Level: Internal
uses Pnt2d from gp,
Vec2d from gp,
POnCurv2d from Extrema
class TheCurveLocator instantiates CurveLocator from Extrema (
TheCurve,
TheCurveTool,
TheCurve,
TheCurveTool,
POnCurv2d from Extrema,
Pnt2d from gp);
class TheLocateExtPC instantiates GenLocateExtPC from Extrema (
TheCurve,
TheCurveTool,
POnCurv2d from Extrema,
Pnt2d from gp,
Vec2d from gp);
is
FindParameter(myclass; C: TheCurve;
Pnt: Pnt2d from gp;
Tol: Real from Standard)
--- Purpose: Returns the parameter V of the point on the
-- parametric curve corresponding to the Point Pnt.
-- The Correspondance between Pnt and the point P(V)
-- on the parametric curve must be coherent with the
-- way of determination of the signed distance
-- between a point and the implicit curve.
-- Tol is the tolerance on the distance between a point
-- and the parametrised curve.
-- In that case, no bounds are given. The research of
-- the rigth parameter has to be made on the natural
-- parametric domain of the curve.
returns Real from Standard;
FindParameter(myclass; C: TheCurve;
Pnt: Pnt2d from gp;
LowParameter,HighParameter,Tol: Real from Standard)
--- Purpose: Returns the parameter V of the point on the
-- parametric curve corresponding to the Point Pnt.
-- The Correspondance between Pnt and the point P(V)
-- on the parametric curve must be coherent with the
-- way of determination of the signed distance
-- between a point and the implicit curve.
-- Tol is the tolerance on the distance between a point
-- and the parametrised curve.
-- LowParameter and HighParameter give the
-- boundaries of the interval in wich the parameter
-- certainly lies. These parameters are given to
-- implement a more efficient algoritm. So, it is not
-- necessary to check that the returned value verifies
-- LowParameter <= Value <= HighParameter.
returns Real from Standard;
end ProjPCurGen;
|