32 lines
934 B
PostScript
32 lines
934 B
PostScript
%!
|
|
%%BoundingBox: 100 100 316 292
|
|
|
|
% This version of the logo is done by Nick Holloway (alfie@dcs.warwick.ac.uk)
|
|
%
|
|
% It is an adaption of James Callison's Logo
|
|
%
|
|
|
|
gsave
|
|
100 292 moveto 208 100 lineto 316 292 lineto closepath clip newpath
|
|
192 256 div setlinewidth
|
|
1 1 255 {
|
|
dup 192 mul 256 div 100 add 100 exch moveto 216 0 rlineto
|
|
1 sub 254 div dup 1 exch sub
|
|
1 index 0.998 mul 1 index 0.366 mul add 3 1 roll % R
|
|
1 index 0.997 mul 1 index 0.301 mul add 3 1 roll % G
|
|
1 index 1.000 mul 1 index 0.787 mul add 3 1 roll % B
|
|
pop pop setrgbcolor stroke
|
|
} for
|
|
grestore
|
|
gsave
|
|
0.879 0.000 0.000 setrgbcolor
|
|
100 195 moveto 100 205 lineto 316 205 lineto 316 195 lineto closepath fill
|
|
grestore
|
|
|
|
/Times-Roman findfont [1 0 0.21 1 0 0] makefont
|
|
dup 120 scalefont setfont 118 180 moveto (L) show
|
|
dup 60 scalefont setfont 155 206 moveto (INUX) show
|
|
18 scalefont setfont 192 182 moveto (RELEASE 0.97) show
|
|
|
|
showpage
|