1GENLIB_LOAD_PHFIG.3(October 1, 1997) GENLIB_LOAD_PHFIG.3(October 1, 1997)
2
3
4
6 PHAD_PHFIG - loads a layout form disk and opens it as current figure
7
9 #include <genlib.h>
10 void GENLIB_LOAD_PHFIG(cellname)
11 char ∗cellname;
12
14 cellname Name of the cell which all futher calls to genlib
15 layout functions will work on
16
18 PHAD_PHFIG loads a physical view from disk and defines it as current
19 working layout figure. This overrides the working figure initialized
20 by DEF_PHFIG(3), if any. So the next call to SAVE_PHFIG will save the
21 cell called cellname.
22
24 #include <genlib.h>
25 main()
26 {
27 /∗ Loads the figure to work on ∗/
28 GENLIB_LOAD_PHFIG("cell");
29 /∗ Add an instance in cell ∗/
30 GENLIB_PLACE("model","instance", NOSYM, 200, 600);
31 /∗ Save all that on disk ∗/
32 GENLIB_SAVE_PHFIG();
33 }
34
36 genlib(1), GENLIB_DEF_PHFIG(3). GENLIB_SAVE_PHFIG(3).
37
38
39
40
41
42
43PROCEDURAL GENERATION LANGUAGE ASIM/LIPG6ENLIB_LOAD_PHFIG.3(October 1, 1997)