blob: 0d3080a64b79ab9804e3ada46392c1ae2e9a2839 (
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: TopOpeBRepBuild_ShellToSolid.cdl
-- Created: Thu Oct 2 15:17:26 1997
-- Author: Xuan Trang PHAM PHU
-- <xpu@poulopox.paris1.matra-dtv.fr>
---Copyright: Matra Datavision 1997
class ShellToSolid from TopOpeBRepBuild
---Purpose:
-- This class builds solids from a set of shells SSh and a solid F.
uses
Shell from TopoDS,
Solid from TopoDS,
ListOfShape from TopTools
is
Create returns ShellToSolid;
Init(me : in out)
is static;
AddShell(me : in out; Sh : Shell from TopoDS)
is static;
MakeSolids(me : in out;
So : Solid from TopoDS;
LSo : in out ListOfShape from TopTools)
is static;
fields
myLSh : ListOfShape from TopTools;
end ShellToSolid;
|