blob: 65d3406fd6e32e874c2ba53a3a4b18a4941a3396 (
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
|
--
-- File: Visual3d_LayerItem.cdl
-- Created: March 20 2009
-- Author: ABD
--
class LayerItem from Visual3d inherits TShared from MMgt
---Version:
---Purpose: This class is drawable unit of 2d scene
---Keywords:
---Warning:
---References:
uses
Boolean from Standard
is
-------------------------
-- Category: Constructors
-------------------------
Create returns LayerItem;
---Level: Public
---Purpose: Creates a layer item
---Category: Constructors
---------------------------------------------------
-- Category: Methods to modify the class definition
---------------------------------------------------
ComputeLayerPrs( me : mutable )
is virtual;
---Level: Public
---Purpose: virtual function for recompute 2D
-- presentation (empty by default)
RedrawLayerPrs( me : mutable )
is virtual;
---Level: Public
---Purpose: virtual function for recompute 2D
-- presentation (empty by default)
IsNeedToRecompute(me)
returns Boolean from Standard;
---Level: Public
SetNeedToRecompute( me : mutable;
NeedToRecompute : Boolean from Standard = Standard_True );
---Level: Public
fields
MyIsNeedToRecompute : Boolean from Standard;
end Layer from Visual3d;
|