blob: ea216a02de6f0425d719754e2c78fd8d621364d9 (
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
|
-- File: BOP_WireShell.cdl
-- Created: Mon Feb 4 10:56:40 2002
-- Author: Peter KURNEV
-- <pkv@irinox>
---Copyright: Matra Datavision 2002
class WireShell from BOP inherits WireShape from BOP
---Purpose:
-- The class to perform a Boolean Operations (BO)
-- Common,Cut,Fuse between arguments when one of them is
-- a wire and other argument is a shell
--
uses
DSFiller from BOPTools,
PDSFiller from BOPTools,
--modified by NIZHNY-MKK Tue Sep 7 11:46:27 2004
ShapeEnum from TopAbs,
Operation from BOP,
ListOfShape from TopTools
is
Create
returns WireShell 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_WireShell(){Destroy();}"
---Purpose:
--- Destructor
---
BuildResult (me:out)
is redefined;
---Purpose:
--- See base classes, please
---
--modified by NIZHNY-MKK Tue Sep 7 11:46:00 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
---
--fields
end WireShell;
|