%!PS-Adobe-3.1 EPSF-3.0 %%BoundingBox: 0 0 600 300 newpath 300 150 15 0 360 arc stroke showpage ********************************************************************** |
%!PS-Adobe-3.1 EPSF-3.0
%%BoundingBox: 0 0 600 300
/circle { newpath 0 360 arc } def
300 150 15 circle
stroke
showpage********************************************************************** |
%!PS-Adobe-3.1 EPSF-3.0
%%BoundingBox: 0 0 600 300
newpath
50 50 moveto
10 { 500 0 rlineto -500 10 rmoveto } repeat
stroke
showpage********************************************************************** |
%!PS-Adobe-3.1 EPSF-3.0
%%BoundingBox: 0 0 600 300
/circle { newpath 0 360 arc stroke } def
/i 0 def
10 {
65 50 i mul add 200 15 circle
/i i 1 add def
} repeat
newpath
50 50 moveto
10 { 500 0 rlineto -500 10 rmoveto } repeat
stroke
showpage********************************************************************** |
%!PS-Adobe-3.1 EPSF-3.0
%%BoundingBox: 0 0 600 300
/circle { newpath 0 360 arc stroke } def
65 50 515 { 200 15 circle } for
newpath
50 50 moveto
10 { 500 0 rlineto -500 10 rmoveto } repeat
stroke
showpage********************************************************************** |
%!PS-Adobe-3.1 EPSF-3.0
%%BoundingBox: 0 0 600 300
/circle { 0 360 arc } def
/i 0 def
10 {
65 50 i mul add 200 15
newpath
circle
1 .5 0 setrgbcolor
stroke
/i i 1 add def
} repeat
/i 0 def
10 {
newpath
50 50 i 10 mul add moveto
i 2 mod 0 eq
{ 0 1 .5 setrgbcolor }
{ .5 0 1 setrgbcolor }
ifelse
500 0 rlineto stroke
/i i 1 add def
} repeat
showpage********************************************************************** |
%!PS-Adobe-3.1 EPSF-3.0
%%BoundingBox: 0 0 600 300
/circle { 0 360 arc } def
/x_point 50 def
/y_point 50 def
/x1_point 50 def
/x2_point 550 def
/y1_point 50 def
/y2_point 250 def
newpath
x1_point y1_point moveto
x2_point y2_point lineto
stroke
/i 0 def
/divx 25 def
/x_plus x2_point x1_point sub divx div def
divx 1 add {
x_point y_point 15
newpath
circle
i 2 mod 0 eq
{ 1 .5 0 setrgbcolor }
{ 0 .5 1 setrgbcolor }
ifelse
stroke
/i i 1 add def
/x_point x_point x_plus add def
/y_point
y2_point y1_point sub
x2_point x1_point sub div
x_point x1_point sub mul
y1_point add
def
} repeat
showpage********************************************************************** |
%!PS-Adobe-3.1 EPSF-3.0
%%BoundingBox: 0 0 600 300
/i 0 def
/xoffset 50 def
10 srand
50 {
/x1_point rand 500 mod def
/x2_point rand 500 mod def
newpath
x1_point xoffset add 50 moveto
x2_point xoffset add 250 lineto
i 2 mod 0 eq
{ 0 .6 1 setrgbcolor }
{ .75 0 .75 setrgbcolor }
ifelse
stroke
/i i 1 add def
} repeat
showpage********************************************************************** |
%!PS-Adobe-3.1 EPSF-3.0
%%BoundingBox: 0 0 600 300
/circle { newpath 0 0 15 0 360 arc stroke } def
gsave
350 25 translate
10 {
1 .5 .8 setrgbcolor
circle
25 5 translate
} repeat
grestore
gsave
100 100 translate
10 {
.6 .7 .4 setrgbcolor
circle
1.2 1.2 scale
}repeat
grestore
gsave
300 200 translate
10 {
newpath
0 0 moveto
80 0 lineto
.4 .5 .8 setrgbcolor
stroke
36 rotate
}repeat
grestore
showpage********************************************************************** |
|