blob: 2fe09bc0213ff5e280cedceee5f98c0392de66fe (
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
|
-- File: TSolid.cdl
-- Created: Mon Dec 17 11:18:44 1990
-- Author: Remi Lequette
-- <rle@topsn3>
---Copyright: Matra Datavision 1990, 1992
class TSolid from PTopoDS inherits TShape from PTopoDS
---Purpose: A topological Solid shape.
uses
ShapeEnum from TopAbs
is
Create returns mutable TSolid from PTopoDS;
---Purpose: The new TSolid has no boundary and covers the
-- whole 3D space.
---Level: Internal
ShapeType(me) returns ShapeEnum from TopAbs;
---Level: Internal
end TSolid;
|