| 1 | # RCSid $Id$ | 
| 2 | # | 
| 3 | #       This file defines a standard curve plot, | 
| 4 | #       where a curve is represented by special | 
| 5 | #       symbols at each point, with lines between. | 
| 6 | # | 
| 7 |  | 
| 8 | include = standard.plt          # standard definitions | 
| 9 |  | 
| 10 | fthick = 3      # frame thickness | 
| 11 | othick = 0      # origin thickness | 
| 12 | lthick = 2      # line thickness | 
| 13 | grid = 0        # grid on? | 
| 14 |  | 
| 15 | symfile = symbols.mta           # our symbol file | 
| 16 | symsize = 100                   # global symbol radius | 
| 17 |  | 
| 18 | # | 
| 19 | # Curve defaults: | 
| 20 | # | 
| 21 |  | 
| 22 | Asymtype = "triangle"           # symbol for A | 
| 23 | Asymsize = symsize              # symbol radius for A | 
| 24 | Athick = lthick                 # line thickness for A | 
| 25 | Alintype = 1                    # line type for A | 
| 26 | Acolor = 4                      # color for A | 
| 27 |  | 
| 28 | Bsymtype = "square" | 
| 29 | Bsymsize = symsize | 
| 30 | Bthick = lthick | 
| 31 | Blintype = 2 | 
| 32 | Bcolor = 2 | 
| 33 |  | 
| 34 | Csymtype = "triangle2" | 
| 35 | Csymsize = symsize | 
| 36 | Cthick = lthick | 
| 37 | Clintype = 3 | 
| 38 | Ccolor = 1 | 
| 39 |  | 
| 40 | Dsymtype = "diamond" | 
| 41 | Dsymsize = symsize | 
| 42 | Dthick = lthick | 
| 43 | Dlintype = 4 | 
| 44 | Dcolor = 3 | 
| 45 |  | 
| 46 | Esymtype = "octagon" | 
| 47 | Esymsize = symsize | 
| 48 | Ethick = lthick | 
| 49 | Elintype = 1 | 
| 50 | Ecolor = 2 | 
| 51 |  | 
| 52 | Fsymtype = "crosssquare" | 
| 53 | Fsymsize = symsize | 
| 54 | Fthick = lthick | 
| 55 | Flintype = 2 | 
| 56 | Fcolor = 4 | 
| 57 |  | 
| 58 | Gsymtype = "exsquare" | 
| 59 | Gsymsize = symsize | 
| 60 | Gthick = lthick | 
| 61 | Glintype = 3 | 
| 62 | Gcolor = 3 | 
| 63 |  | 
| 64 | Hsymtype = "crossdiamond" | 
| 65 | Hsymsize = symsize | 
| 66 | Hthick = lthick | 
| 67 | Hlintype = 4 | 
| 68 | Hcolor = 1 |