1DESTROYRDSWINDOW(3) RDS PHYSICAL FUNCTIONS DESTROYRDSWINDOW(3)
2
3
4
6 destroyrdswindow - destroys windowing of a figure
7
9 #include "rwinnn.h"
10 void destroyrdswindow( Figure, RdsWindow )
11 rdsfig_list ∗Figure;
12 rdswindow ∗RdsWindow;
13
15 Figure The figure where has to be destroyed the windowing.
16
17 RdsWindow Pointer to the head of windowing (rdswindow struc‐
18 ture) to destroy.
19
21 The destroyrdswindow function destroys the windowing applied to a fig‐
22 ure and built with the buildrdswindow function.
23
25 nothing
26
28 none
29
31 #include "mphnnn.h"
32 #include "mutnnn.h"
33 #include "rdsnnn.h"
34 #include "rfmnnn.h"
35 #include "rwinnn.h"
36 #include "rtlnnn.h"
37 main()
38 {
39 phfig_list ∗MbkFigure;
40 rdsfig_list ∗RdsFigure;
41 rdswindow ∗Window;
42 mbkenv();
43 rdsenv();
44 loadrdsparam();
45 MbkFigure = getphfig("na2_y",'A');
46 RdsFigure = figmbkrds(MbkFigure,0,0);
47 Window = buildrdswindow ( RdsFigure );
48 . . .
49 /∗ ∗/ destroyrdswindow ( RdsFigure, Window );
50 . . .
51 }
52
54 librwi, buildrdswindow, allocrdswindow, viewrdswindow
55
56
57
58
59
60
61ASIM/LIP6 October 1, 1997 DESTROYRDSWINDOW(3)