0023024: Update headers of OCCT files
[occt.git] / src / Bisector / Bisector.cdl
1 -- Created on: 1994-05-19
2 -- Created by: Yves FRICAUD
3 -- Copyright (c) 1994-1999 Matra Datavision
4 -- Copyright (c) 1999-2012 OPEN CASCADE SAS
5 --
6 -- The content of this file is subject to the Open CASCADE Technology Public
7 -- License Version 6.5 (the "License"). You may not use the content of this file
8 -- except in compliance with the License. Please obtain a copy of the License
9 -- at http://www.opencascade.org and read it completely before using this file.
10 --
11 -- The Initial Developer of the Original Code is Open CASCADE S.A.S., having its
12 -- main offices at: 1, place des Freres Montgolfier, 78280 Guyancourt, France.
13 --
14 -- The Original Code and all software distributed under the License is
15 -- distributed on an "AS IS" basis, without warranty of any kind, and the
16 -- Initial Developer hereby disclaims all such warranties, including without
17 -- limitation, any warranties of merchantability, fitness for a particular
18 -- purpose or non-infringement. Please see the License for the specific terms
19 -- and conditions governing the rights and limitations under the License.
20
21
22 package Bisector 
23
24     --- Purpose : This package provides the bisecting line between two
25     --            geometric elements.
26
27 uses 
28      MMgt,
29      Standard,
30      TCollection,
31      TColStd,   
32      TColgp,
33      TopAbs,         
34      Geom2d,
35      GeomAbs,
36      gp,
37      math,
38      IntCurve,  
39      GccInt,
40      StdFail,
41      IntRes2d
42 is
43
44     deferred class Curve;
45     
46              class BisecAna;
47              --- Purpose: This class provides the bisecting line between two
48              --           geometric elements.The elements are Circles,Lines or
49              --           Points. 
50
51              class BisecPC;
52              ---Purpose: This class provides the bisecting line between a point
53              --          a Curve.
54     
55              class BisecCC;     
56              ---Purpose: This class provides the bisecting line between two
57              --          Curves. 
58
59     class Bisec;
60         ---Purpose: This class provides the bisecting line between two
61         --          geometris  elelements.  The   bisecting   line  is
62         --          trimmed by a point, 
63     
64     class Inter;
65     
66     class PointOnBis;
67     
68     class PolyBis;
69     
70     private class FunctionH;
71     
72     private class FunctionInter;
73     
74     IsConvex (Cu : Curve from Geom2d; Sign : Real) 
75     returns Boolean from Standard;
76     
77 end Bisector;