blob: 4dad5a8d26b1b7136f35f72bb9b4b500943ceebb (
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
|
-- File: Geom2dInt.cdl
-- Created: Thu Jun 4 16:06:42 1992
-- Author: Jacques GOUSSARD
-- <jag@sdsun1>
---Copyright: Matra Datavision 1992
package Geom2dInt
---Purpose: Intersection between two Curves2 from Geom2dAdaptor
---Level: Public
--
-- All the methods of the classes are public.
--
uses Standard, gp, TColStd, GeomAbs, Geom2d, Adaptor3d,Adaptor2d, IntCurve
is
generic class CurveTool;
class Geom2dCurveTool instantiates CurveTool from Geom2dInt
(Curve2d from Adaptor2d);
class GInter instantiates IntCurveCurveGen from IntCurve
(Curve2d from Adaptor2d,
Geom2dCurveTool from Geom2dInt);
end Geom2dInt;
|