0024002: Overall code and build procedure refactoring -- automatic
[occt.git] / src / Bisector / Bisector_PointOnBis.cdl
1 -- Created on: 1994-01-10
2 -- Created by: Yves FRICAUD
3 -- Copyright (c) 1994-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 class PointOnBis from Bisector 
18
19         ---Purpose: 
20     
21 uses 
22     Pnt2d from gp
23
24 is
25     Create returns PointOnBis from Bisector;
26     
27     Create ( Param1, Param2, ParamBis, Distance : Real; Point : Pnt2d) 
28     returns PointOnBis from Bisector; 
29     
30     ParamOnC1 (me : in out; Param : Real)
31     is static;
32     
33     ParamOnC2 (me : in out; Param : Real)
34     is static;
35     
36     ParamOnBis (me : in out; Param : Real)
37     is static;
38     
39     Distance (me : in out; Distance : Real)
40     is static;
41     
42     IsInfinite (me : in out; Infinite : Boolean)
43     is static;
44
45     Point (me : in out ; P :Pnt2d)
46     is static;
47     
48     ParamOnC1 (me) returns Real
49     is static;
50     
51     ParamOnC2 (me) returns Real
52     is static;
53
54     ParamOnBis (me) returns Real
55     is static;
56         
57     Distance (me) returns Real
58     is static;
59     
60     Point (me) returns Pnt2d
61     is static;
62     
63     IsInfinite (me) returns Boolean 
64     is static;
65     
66     Dump (me) is static;
67     
68 fields
69
70     param1   : Real;
71     param2   : Real;
72     paramBis : Real;
73     distance : Real;
74     infinite : Boolean; 
75     point    : Pnt2d from gp;
76     
77 end PointOnBis;