0024624: Lost word in license statement in source files
[occt.git] / src / Intf / Intf_Polygon2d.cdl
1 -- Created on: 2012-02-10
2 -- Created by: Serey ZERCHANINOV
3 -- Copyright (c) 2012-2014 OPEN CASCADE SAS
4 --
5 -- This file is part of Open CASCADE Technology software library.
6 --
7 -- This library is free software; you can redistribute it and/or modify it under
8 -- the terms of the GNU Lesser General Public License version 2.1 as published
9 -- by the Free Software Foundation, with special exception defined in the file
10 -- OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
11 -- distribution for complete text of the license and disclaimer of any warranty.
12 --
13 -- Alternatively, this file may be used under the terms of Open CASCADE
14 -- commercial license or contractual agreement.
15
16 deferred class Polygon2d from Intf
17
18         ---Purpose: 
19
20 uses Pnt2d from gp,
21      Box2d from Bnd
22
23 raises OutOfRange from Standard
24
25 is
26
27     Bounding (me)
28         returns Box2d from Bnd;
29     ---C++: return const &
30     ---C++: inline
31     ---Purpose: Returns the bounding box of the polygon.
32
33     Closed (me)
34         returns Boolean from Standard is virtual;
35     ---Purpose: Returns True if the polyline is closed.
36
37     DeflectionOverEstimation (me) returns Real from Standard is deferred;
38     ---Purpose: Returns the tolerance of the polygon.
39
40     NbSegments (me) returns Integer from Standard is deferred;
41     ---Purpose: Returns the number of Segments in the polyline.
42
43     Segment (me; theIndex : in Integer from Standard;
44                  theBegin, theEnd : in out Pnt2d from gp)
45         raises OutOfRange from Standard is deferred;
46     ---Purpose: Returns the points of the segment <Index> in the Polygon.
47
48 fields
49
50     myBox   : Box2d from Bnd is protected;
51
52 end Polygon2d;