0024784: Move documentation in CDL files to proper location
[occt.git] / src / Bisector / Bisector_Curve.cdl
1 -- Created on: 1994-03-18
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 deferred class Curve from Bisector 
18
19         ---Purpose: 
20
21 inherits
22     Curve from Geom2d
23
24 uses
25     Pnt2d from gp
26
27 is
28     
29     Parameter ( me ; P : Pnt2d from gp) returns Real
30     is deferred;
31     
32     IsExtendAtStart (me) returns Boolean from Standard
33     is deferred;
34     
35     IsExtendAtEnd   (me) returns Boolean from Standard
36     is deferred;
37
38     NbIntervals (me) returns Integer
39         ---Purpose: If necessary,  breaks the  curve in  intervals  of
40         --          continuity  <C1>.    And  returns   the number   of
41         --          intervals.
42     is deferred;
43
44     IntervalFirst(me; Index : Integer from Standard) returns Real
45        ---Purpose: Returns  the  first  parameter    of  the  current
46        --          interval. 
47     is deferred;
48     
49     IntervalLast(me; Index : Integer from Standard) returns Real
50        ---Purpose: Returns  the  last  parameter    of  the  current
51        --          interval. 
52     is deferred;
53     
54 end Curve;
55
56
57