0024530: TKMesh - remove unused package IntPoly
[occt.git] / src / BRep / BRep_PolygonOnClosedSurface.cdl
CommitLineData
b311480e 1-- Created on: 1995-03-15
2-- Created by: Laurent PAINNOT
3-- Copyright (c) 1995-1999 Matra Datavision
973c2be1 4-- Copyright (c) 1999-2014 OPEN CASCADE SAS
b311480e 5--
973c2be1 6-- This file is part of Open CASCADE Technology software library.
b311480e 7--
973c2be1 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.
b311480e 13--
973c2be1 14-- Alternatively, this file may be used under the terms of Open CASCADE
15-- commercial license or contractual agreement.
7fd59977 16
17class PolygonOnClosedSurface from BRep
18
19 inherits PolygonOnSurface from BRep
20
21 ---Purpose: Representation by two 2d polygons in the parametric
22 -- space of a surface.
23
24uses Polygon2D from Poly,
25 Surface from Geom,
26 CurveRepresentation from BRep,
27 Location from TopLoc
28
29
30
31is
32 Create(P1: Polygon2D from Poly;
33 P2: Polygon2D from Poly;
34 S: Surface from Geom;
35 L: Location from TopLoc)
36 returns mutable PolygonOnClosedSurface from BRep;
37
38
39 IsPolygonOnClosedSurface(me) returns Boolean
40 ---Purpose: returns True.
41 is redefined;
42
43 Polygon2(me) returns any Polygon2D from Poly
44 ---C++: return const&
45 is redefined;
46
47 Polygon2(me: mutable; P: Polygon2D from Poly)
48 is redefined;
49
50
51 Copy(me) returns mutable CurveRepresentation from BRep
52 ---Purpose: Return a copy of this representation.
53 is redefined;
54
55fields
56
57myPolygon2: Polygon2D from Poly;
58
59end PolygonOnClosedSurface;