blob: ce61b7d0ab8e0223e3f5948276973a74f4e4f714 (
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
|
-- File: LocalAnalysis.cdl
-- Created: Wed Jul 24 14:40:18 1996
-- Author: Herve LOUESSARD
-- <hl1@sgi29>
---Copyright: Matra Datavision 1996
package LocalAnalysis
---Purpose:
-- This package gives tools to check the local continuity
-- between two points situated on two curves or two surfaces.
uses
Standard,
StdFail,
LProp,
GeomAbs,
Geom,
Geom2d,
GeomLProp,
gp
is
-- enumeration used to describe the status error
enumeration StatusErrorType is NullFirstDerivative, NullSecondDerivative,
TangentNotDefined,NormalNotDefined,
CurvatureNotDefined
end StatusErrorType;
class SurfaceContinuity;
---Purpose:
-- This class computes and gives tools to check the local
-- continuity between two points situated on 2 surfaces
class CurveContinuity;
---Purpose:
-- This class compute
-- s and gives tools to check the local
-- continuity between two points situated on 2 curves)
Dump( surfconti : SurfaceContinuity from LocalAnalysis;
o: in out OStream);
---Purpose:
-- This fonction gives informations about a variable CurveContinuity
Dump( curvconti : CurveContinuity from LocalAnalysis;
o: in out OStream);
---Purpose:
-- This fonction gives informations about a variable SurfaceContinuity
end LocalAnalysis;
|