summaryrefslogtreecommitdiff
path: root/src/IntImpParGen/IntImpParGen_ImpTool.cdl
blob: e9df3755ed7a5e6b4045fe7d8605238d62fcba3b (plain)
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
-- File:	ImpTool.cdl
-- Created:	Thu Mar 26 14:24:05 1992
-- Author:	Laurent BUCHARD
--		<lbr@topsn3>
---Copyright:	 Matra Datavision 1992



deferred class ImpTool from IntImpParGen

	---Purpose: Template class for an implicit curve.


uses Pnt2d    from gp,
     Vec2d    from gp

is


    Value (me; U: Real from Standard)
    
    	--Purpose: Computes the point at parameter U on the 
    	--         Implicit Curve.
    	
    	returns Pnt2d from gp
        is static;


    D1 (me; U: Real from Standard ; P: out Pnt2d; T: out Vec2d)
    
    	--Purpose: Computes the first derivative and the point on the 
    	--         implicit curve at parameter U.

    	is static;


    D2 (me; U: Real from Standard ; P: out Pnt2d; T,N: out Vec2d)
    
    	--Purpose: Computes the first, the second derivatives
    	--         and the point on the implicit curve at parameter U.    

    	is static;


    Distance(me; P: Pnt2d from gp)
    
	---Purpose: Computes the value of the signed distance between 
	--          the point P and the implicit curve.    
	--          

    	returns Real from Standard
        is static;
	
	
    GradDistance(me; P: Pnt2d from gp)
    
    	---Purpose: Computes the Gradient of the Signed Distance 
    	--          between a point and the implicit curve, at the 
    	--          point P.
    	--          

        returns Vec2d from gp 
	is static;
	
	 
    FindParameter(me; P: Pnt2d from gp)
    
    	---Purpose: Returns the parameter U of the point on the 
    	--          implicit curve corresponding to the point P.
    	--          The correspondance between P and the point P(U) on 
    	--          the implicit curve must be coherent with the way 
    	--          of determination of the signed distance.

        returns Real from Standard
        is static;
	

end ImpTool;