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
|
-- File: IntAna.cdl
-- Created: Tue Jun 30 17:11:11 1992
-- Author: Laurent BUCHARD
-- <lbr@topsn3>
---Copyright: Matra Datavision 1992
package IntAna
---Purpose: This package provides the intersections between :
--
-- - Natural Quadrics when the result is a conic (QuadQuadGeo)
--
-- - A natural Quadric and a Quadric defined by its Coefficients
-- (IntQuadQuad)
--
-- - 3 Pln (Int3Pln)
--
-- - a Line and a Torus (IntLinTorus)
--
-- - a Conic from gp and a Quadric defined by its Coefficients
-- (IntConicQuad)
--
---Level: Public
--
-- All the methods of the classes of this package are public.
--
uses TCollection, math, gp, StdFail, IntAna2d, GeomAbs
is
enumeration ResultType is Point,
Line,
Circle,
PointAndCircle,
Ellipse,
Parabola,
Hyperbola,
Empty,
Same,
NoGeometricSolution;
class QuadQuadGeo;
class IntQuadQuad;
class Int3Pln;
class IntLinTorus;
class IntConicQuad;
class Curve;
class Quadric;
--
class ListOfCurve instantiates
List from TCollection(Curve from IntAna);
--
end IntAna;
|