blob: fec7ba3058f75c597d3ac3598897179e3038d89e (
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
|
-- File: BOPTest.cdl
-- Created: Thu May 18 10:40:44 2000
-- Author: Peter KURNEV
-- <pkv@irinox>
---Copyright: Matra Datavision 2000
package BOPTest
---Purpose:
--
uses
Draw,
TCollection,
gp,
TopoDS,
DBRep
is
class DrawableShape;
AllCommands(DI : in out Interpretor from Draw);
---Purpose: Defines all commands.
MTestCommands(DI : in out Interpretor from Draw);
TSTCommands (DI : in out Interpretor from Draw);
EFCommands (DI : in out Interpretor from Draw);
LowCommands (DI : in out Interpretor from Draw);
BOPCommands (DI : in out Interpretor from Draw);
WSplitCommands(DI : in out Interpretor from Draw);
CurveCommands(DI : in out Interpretor from Draw);
TolerCommands(DI : in out Interpretor from Draw);
CheckCommands(DI : in out Interpretor from Draw);
Factory (theDI : in out Interpretor from Draw);
---Purpose: Loads all Draw commands for Geometry & Topology. Used for plugin.
end BOPTest;
|