blob: 134bab9abf505cf2f37982bef5e30991873ad409 (
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
82
83
84
85
86
87
88
89
90
91
92
93
94
|
--
-- File: Graphic3d_Plotter.cdl
-- Created: Vendredi 18 avril 1997
-- Author: JLF, CAL
--
---Copyright: MatraDatavision 1997
--
deferred class Plotter from Graphic3d inherits TShared from MMgt
---Version:
---Purpose: This class allows the definition of a plotter
---Keywords:
---Warning:
---References:
uses
DataStructureManager from Graphic3d
raises
PlotterDefinitionError from Graphic3d
is
Initialize
---Level: Public
---Purpose: Initialise the constructor of the plotter.
-- Warning: Raises InitialisationError if the initialisation
-- of the plotter failed.
raises PlotterDefinitionError from Graphic3d;
-- if the initialisation of the plotter failed.
Destroy ( me : mutable )
is virtual;
---Level: Public
---Purpose: Deletes the plotter <me>.
---C++: alias ~
---------------------------------------------------
-- Category: Methods to modify the class definition
---------------------------------------------------
BeginPlot ( me : mutable;
aProjector : DataStructureManager from Graphic3d )
returns Boolean from Standard
raises PlotterDefinitionError from Graphic3d
is virtual;
---Level: Public
---Purpose:
-- Warning: Returns Standard_True if plotting is enabled in the view.
-- Raises PlotterDefinitionError from Graphic3d
-- if plotting has already started.
---Category: Methods to modify the class definition
EndPlot ( me : mutable )
raises PlotterDefinitionError from Graphic3d
is virtual;
---Level: Public
---Purpose: Stops the plotting.
-- Warning: Raises PlotterDefinitionError from Graphic3d
-- if plotting has not started yet.
---Category: Methods to modify the class definition
----------------------------
-- Category: Inquire methods
----------------------------
PlottingState ( me )
returns Boolean from Standard
is deferred;
---Level: Public
---Purpose:
---Category: Inquire methods
--
fields
--
-- Class : Graphic3d_Plotter
--
-- Purpose : Declaration of variables specific to plotters
--
-- Reminder : A plotter
-- the update display mode
MyPlottingState : Boolean from Standard is protected;
end Plotter from Graphic3d;
|