blob: b54d1f45ddb37e6879eb404e8fb5e106083a7177 (
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
|
-- File: BOP_WireSolid.cdl
-- Created: Mon Feb 4 11:46:26 2002
-- Author: Peter KURNEV
-- <pkv@irinox>
---Copyright: Matra Datavision 2002
class WireSolid from BOP inherits WireShape from BOP
---Purpose:
-- The class is to perform a Boolean Operations (BO)
-- Common,Cut,Fuse between arguments when one of them is
-- a wire and other argument is a solid
--
uses
DSFiller from BOPTools,
PDSFiller from BOPTools,
HistoryCollector from BOP,
--modified by NIZHNY-MKK Tue Sep 7 11:42:36 2004
ShapeEnum from TopAbs,
Operation from BOP,
ListOfShape from TopTools
is
Create
returns WireSolid from BOP;
---Purpose:
--- Empty constructor;
---
Do (me:out)
is redefined;
---Purpose:
--- (See base classes, please)
---
DoWithFiller (me:out;
aDSF: DSFiller from BOPTools)
is redefined;
---Purpose:
--- (See base classes, please)
---
Destroy (me: in out)
is redefined;
---C++: alias "Standard_EXPORT virtual ~BOP_WireSolid(){Destroy();}"
---Purpose:
--- Destructor
---
BuildResult (me:out)
is redefined;
---Purpose:
--- (See base classes, please)
---
--modified by NIZHNY-MKK Tue Sep 7 11:41:46 2004
CheckArgTypes(myclass; theType1, theType2: ShapeEnum from TopAbs;
theOperation: Operation from BOP)
returns Boolean from Standard;
---Purpose:
--- Check the types of arguments.
--- Returns FALSE if types of arguments
--- are non-valid to be treated by the
--- agorithm
CheckArgTypes(me)
returns Boolean from Standard
is private;
---Purpose:
--- Internal usage
---
AddSplitParts(me:out)
is private;
---Purpose:
--- Internal usage
---
SetHistoryCollector(me: in out; theHistory: HistoryCollector from BOP)
is redefined virtual;
--fields
end WireSolid;
|