blob: 251698863e71f8170ed1acda45702a4541e72c7d (
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
|
-- File: PBRep_Polygon3D.cdl
-- Created: Mon Oct 23 15:41:40 1995
-- Author: Mister rmi
-- <rmi@pronox>
---Copyright: Matra Datavision 1995
class Polygon3D from PBRep inherits CurveRepresentation from PBRep
---Purpose:
uses
Polygon3D from PPoly,
CurveRepresentation from PBRep,
Location from PTopLoc
is
Create(P: Polygon3D from PPoly;
L: Location from PTopLoc)
---Purpose:
returns mutable Polygon3D from PBRep;
IsPolygon3D(me) returns Boolean
---Purpose: Returns True.
is redefined;
Polygon3D(me) returns any Polygon3D from PPoly;
fields
myPolygon3D: Polygon3D from PPoly;
end Polygon3D;
|