blob: 4224cd5494ffb1b065e9c8e7cea055f3fa1c290b (
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
39
|
-- File: BRepOffset_MakeLoops.cdl
-- Created: Thu Sep 5 14:45:25 1996
-- Author: Yves FRICAUD
-- <yfr@claquox.paris1.matra-dtv.fr>
---Copyright: Matra Datavision 1996
class MakeLoops from BRepOffset
---Purpose:
uses
ListOfShape from TopTools,
AsDes from BRepAlgo,
Analyse from BRepOffset,
Image from BRepAlgo,
DataMapOfShapeShape from TopTools
is
Create;
Build (me: in out; LF : ListOfShape from TopTools;
AsDes : AsDes from BRepAlgo;
Image : in out Image from BRepAlgo);
BuildOnContext(me: in out; LContext : ListOfShape from TopTools;
Analyse : Analyse from BRepOffset;
AsDes : AsDes from BRepAlgo;
Image : in out Image from BRepAlgo;
InSide : Boolean from Standard);
BuildFaces (me: in out; LF : ListOfShape from TopTools;
AsDes : AsDes from BRepAlgo;
Image : in out Image from BRepAlgo);
fields
myVerVerMap : DataMapOfShapeShape from TopTools;
end MakeLoops;
|