blob: c74fe9923ee257771183dfe4b8283293b4d5e05b (
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
40
41
42
43
44
45
46
47
48
|
-- File: HLRBRep_ShapeToHLR.cdl
-- Created: Tue May 4 16:52:14 1993
-- Author: Modelistation
-- <model@phylox>
---Copyright: Matra Datavision 1993
class ShapeToHLR from HLRBRep
---Purpose: compute the OutLinedShape of a Shape with an
-- OutLiner, a Projector and create the Data
-- Structure of a Shape.
uses
Shape from TopoDS,
Face from TopoDS,
IndexedMapOfShape from TopTools,
OutLiner from HLRTopoBRep,
Projector from HLRAlgo,
Data from HLRBRep,
MapOfShapeTool from BRepTopAdaptor
is
Load(myclass; S : OutLiner from HLRTopoBRep;
P : Projector from HLRAlgo;
MST : in out MapOfShapeTool from BRepTopAdaptor;
nbIso : Integer from Standard = 0)
returns Data from HLRBRep;
---Purpose: Creates a DataStructure containing the OutLiner
-- <S> depending on the projector <P> and nbIso.
ExploreFace(myclass;
S : OutLiner from HLRTopoBRep;
DS : mutable Data from HLRBRep;
FM : IndexedMapOfShape from TopTools;
EM : IndexedMapOfShape from TopTools;
i : in out Integer from Standard;
F : Face from TopoDS;
closed : Boolean from Standard)
is private;
ExploreShape(myclass;
S : OutLiner from HLRTopoBRep;
DS : mutable Data from HLRBRep;
FM : IndexedMapOfShape from TopTools;
EM : IndexedMapOfShape from TopTools)
is private;
end ShapeToHLR;
|