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
|
-- File: BRepIntCurveSurface.cdl
-- Created: Mon Feb 7 15:24:20 1994
-- Author: Modelistation
-- <model@nonox>
---Copyright: Matra Datavision 1994
package BRepIntCurveSurface
---Purpose: Inttantiates IntCurveSurface with Surfaces from BRep
-- and Curves from Adaptor
---Level: Public
--
-- All the methods of the classes of this package are public.
--
uses
--modified by NIZNHY-PKV Sun Dec 15 16:54:16 2002 f
BRepTopAdaptor,
--modified by NIZNHY-PKV Sun Dec 15 16:54:28 2002 t
IntCurveSurface,
BRepAdaptor,
Geom2dInt,
GeomAdaptor,
TopoDS,
BRepClass,
TopAbs,
TopExp,
StdFail,
gp
is
--------------------------------------------------
-- Instantiation of IntCurveSurfaces algorithms --
-- The intersection is computed on the surfaces --
-- with their natural boundaries. --
--------------------------------------------------
-- class ICSSurfaceTool instantiates
-- SurfaceTool from IntCurveSurface(
---- HSurface from BRepAdaptor) ;
--
----
-- class ICSCurveTool instantiates
---- CurveTool from IntCurveSurface(
-- HCurve from GeomAdaptor) ;
----
--
---- class ICSInter instantiates
-- Inter from IntCurveSurface(
---- HCurve from GeomAdaptor,
-- ICSCurveTool from BRepIntCurveSurface,
---- HSurface from BRepAdaptor,
-- ICSSurfaceTool from BRepIntCurveSurface);
--
------------------------------------------------------
-- The Inter class provides intersection between --
-- - a BRepAdaptor surface and a GeomAdaptor curve --
-- - a Shape and a GeomAdaptor curve --
-- Only the points which are inside the surface --
-- are returned. --
------------------------------------------------------
class Inter;
end BRepIntCurveSurface;
|