0024750: Replace instantiations of TCollection generic classes by NCollection templat...
[occt.git] / src / GeomInt / GeomInt.cdl
1 -- Created on: 1995-01-27
2 -- Created by: Jacques GOUSSARD
3 -- Copyright (c) 1995-1999 Matra Datavision
4 -- Copyright (c) 1999-2014 OPEN CASCADE SAS
5 --
6 -- This file is part of Open CASCADE Technology software library.
7 --
8 -- This library is free software; you can redistribute it and/or modify it under
9 -- the terms of the GNU Lesser General Public License version 2.1 as published
10 -- by the Free Software Foundation, with special exception defined in the file
11 -- OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
12 -- distribution for complete text of the license and disclaimer of any warranty.
13 --
14 -- Alternatively, this file may be used under the terms of Open CASCADE
15 -- commercial license or contractual agreement.
16
17 package GeomInt
18
19         ---Purpose: Provides intersections on between two surfaces of Geom.
20         --          The result are curves from Geom.
21
22
23 uses StdFail,
24      TCollection,
25      TColStd,
26      TopAbs,
27      
28      gp,
29      Geom,
30      Geom2d,
31      TColGeom,
32      TColGeom2d,     
33      Adaptor3d,
34      GeomAdaptor,
35
36      IntSurf,
37      IntPatch,
38      ApproxInt,
39      Bnd
40
41 is
42
43     class IntSS;
44     imported VectorOfReal;
45
46     class LineConstructor;
47
48     class LineTool;
49
50     class WLApprox instantiates Approx from ApproxInt
51         (HSurface     from Adaptor3d,
52          HSurfaceTool from Adaptor3d,
53          Quadric      from IntSurf,
54          QuadricTool  from IntSurf,
55          WLine        from IntPatch);
56          
57     private class ParameterAndOrientation;
58
59     imported SequenceOfParameterAndOrientation;
60
61     AdjustPeriodic(thePar    : Real from Standard;
62                    theParMin : Real from Standard;
63                    theParMax : Real from Standard;
64                    thePeriod : Real from Standard;
65                    theNewPar : out Real from Standard;
66                    theOffset : out Real from Standard;
67                    theEps    : Real from Standard = 0.0)
68     returns Boolean from Standard;        
69     ---Purpose:  Adjusts the parameter <thePar> to the range [theParMin,  theParMax]
70
71 end GeomInt;