0024428: Implementation of LGPL license
[occt.git] / src / Intf / Intf_Polygon2d.cdl
1 -- Created on: 2014-02-10
2 -- Created by: Serey ZERCHANINOV
3 -- Copyright (c) -1999 Matra Datavision
4 -- Copyright (c) 2014-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
9 -- under the terms of the GNU Lesser General Public 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 Polygon2d from Intf
18
19         ---Purpose: 
20
21 uses Pnt2d from gp,
22      Box2d from Bnd
23
24 raises OutOfRange from Standard
25
26 is
27
28     Bounding (me)
29         returns Box2d from Bnd;
30     ---C++: return const &
31     ---C++: inline
32     ---Purpose: Returns the bounding box of the polygon.
33
34     Closed (me)
35         returns Boolean from Standard is virtual;
36     ---Purpose: Returns True if the polyline is closed.
37
38     DeflectionOverEstimation (me) returns Real from Standard is deferred;
39     ---Purpose: Returns the tolerance of the polygon.
40
41     NbSegments (me) returns Integer from Standard is deferred;
42     ---Purpose: Returns the number of Segments in the polyline.
43
44     Segment (me; theIndex : in Integer from Standard;
45                  theBegin, theEnd : in out Pnt2d from gp)
46         raises OutOfRange from Standard is deferred;
47     ---Purpose: Returns the points of the segment <Index> in the Polygon.
48
49 fields
50
51     myBox   : Box2d from Bnd is protected;
52
53 end Polygon2d;