summaryrefslogtreecommitdiff
path: root/src/IntPatch/IntPatch_Polygo.cdl
blob: 7d94c9cee8109de9fd83b7e33abc9f63b3090abe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
-- File:	IntPatch_Polygo.cdl
-- Created:	Thu May  6 17:49:16 1993
-- Author:	Jacques GOUSSARD
--		<jag@form4>
---Copyright:	 Matra Datavision 1993


deferred class Polygo from IntPatch

	---Purpose: 

uses Pnt2d from gp,
     Box2d from Bnd

is

  Delete(me:out) is virtual;
  ---C++: alias "Standard_EXPORT virtual ~IntPatch_Polygo(){Delete() ; }"
    
  Bounding (me)  
    ---C++: return const & 
    returns Box2d from Bnd
    is deferred;
    
  Error(me) returns Real from Standard
    is deferred;
                         	    	          
  Closed(me) returns Boolean from Standard
    is deferred;

  NbPoints(me) returns Integer
    is deferred;
    
  Point(me; Index : Integer)
    returns Pnt2d from gp
    is deferred;
    
end Polygo;