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 subroutine setplf 00021 save 00022 c 00023 common/fr plain/iplain/fr bare/ibare 00024 logical set,fset 00025 c 00026 data set/.false./ 00027 c 00028 entry clrxtf 00029 entry setpln 00030 iplain = 1 00031 go to 100 00032 c 00033 entry setxtf 00034 entry clrplf 00035 entry clrpln 00036 iplain = 0 00037 ibare = 0 00038 go to 100 00039 c 00040 entry setbare 00041 ibare = 1 00042 iplain = 1 00043 go to 100 00044 c 00045 entry clrbare 00046 ibare = 0 00047 go to 100 00048 c 00049 entry setfnt(j1,j2) 00050 iplain = j1 00051 ibare = j2 00052 if (ibare.eq.1) iplain = 1 00053 if (iplain.eq.0) ibare = 0 00054 go to 100 00055 c 00056 entry getfnt(i1,i2) 00057 i1 = iplain 00058 i2 = ibare 00059 c 00060 100 set = .true. 00061 return 00062 c 00063 entry getfset(fset) 00064 fset = set 00065 c 00066 end