00001
00002 c
00003 c Copyright (c) 1986,1987,1988,1989,1990,1991,1992,1993,
00004 c by Steve McMillan, Drexel University, Philadelphia, PA.
00005 c
00006 c All rights reserved.
00007 c
00008 c Redistribution and use in source and binary forms are permitted
00009 c provided that the above copyright notice and this paragraph are
00010 c duplicated in all such forms and that any documentation,
00011 c advertising materials, and other materials related to such
00012 c distribution and use acknowledge that the software was developed
00013 c by the author named above.
00014 c
00015 c THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
00016 c IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
00017 c WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
00018 c
00019
00020 program fonts
00021 c
00022 parameter (BOTTOM = 0.25, TOP = 6.9, NROWS = 24)
00023 c
00024 data r0/.5/dr/2.25/
00025 c
00026 ds = (TOP - BOTTOM) / (NROWS - 1)
00027 s0 = TOP + ds
00028 ds2=.5*ds
00029 dr1=2.*ds
00030 c
00031 call mcinita(' ')
00032 c call plot(1., 1., 3)
00033 c call plot(10., 10., 2)
00034 c call mcdxidle
00035 c call mcdxnobuffer
00036 c write(6,*)'After mcinit'
00037 call nobounds
00038 call weight(7)
00039 call simbol(r0,s0+.75*ds,ds2,
00040 & 'Here is the present complete SIMBOL font set'
00041 & ' ("@Aa"\\ _\\ @a, "@Ra"\\ _\\ %a):%%',
00042 & 0.,999)
00043 c
00044 i = 31
00045 r = r0 - dr
00046 do 100 jcol=1,4
00047 r = r + dr
00048 s = s0
00049 do 75 irow=1,24
00050 i = i + 1
00051 s = s - ds
00052 call nombr(r,s,ds2,float(i),0.,-1)
00053 call simbol(r+dr1,s,ds2,char(i),0.,1)
00054 call simbol(r+dr1+ds,s,ds2,'@'
00055 call simbol(r+dr1+2.*ds,s,ds2,'%'
00056 75 continue
00057 100 continue
00058 c
00059 call mcquit1
00060 end