blob: f455fa9ae7df33f0a801737eb75451eb179ea7bf (
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
|
-- File: ShapeAlgo_ToolContainer.cdl
-- Created: Mon Feb 7 12:24:50 2000
-- Author: data exchange team
-- <det@nnov>
---Copyright: Matra Datavision 2000
class ToolContainer from ShapeAlgo inherits TShared from MMgt
---Purpose:
uses
Shape from ShapeFix,
EdgeProjAux from ShapeFix
is
Create returns mutable ToolContainer from ShapeAlgo;
---Purpose: Empty constructor
FixShape (me) returns Shape from ShapeFix is virtual;
---Purpose: Returns ShapeFix_Shape
EdgeProjAux (me) returns EdgeProjAux from ShapeFix is virtual;
---Purpose: Returns ShapeFix_EdgeProjAux
end ToolContainer;
|