aboutsummaryrefslogtreecommitdiff
path: root/vendor/github.com/llgcode/ps/samples/test1.ps
blob: cd53b371be714533415129671d20cd7732c9d710 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
%!
% Example of rotation... draws 36 lines in a circular pattern

/box {
   newpath
   moveto
   72 0 rlineto
   0 72 rlineto
   -72 0 rlineto
   closepath
} def

% Specify font for text labels
/Helvetica findfont 40 scalefont setfont

gsave
  40 40 translate               % Set origin to (40, 40)
  0 0 box stroke                % Draw box at new origin...
  77 0 moveto
  (Translated) show             %   and label
grestore

gsave
  100 150 translate             % Translate origin to (100, 150)
  30 rotate                     % Rotate counter-clockwise by 30 degrees
  0 0 box stroke                % Draw box...
  75 0 moveto
  (Translated & Rotated) show   %   and label
grestore

gsave
  40 300 translate              % Translate to  (40, 300)
  0.5 1 scale                   % Reduce x coord by 1/2, y coord left alone
  0 0 box stroke                % Draw box...
  75 0 moveto
  (Translated & Squished) show  %   and label
grestore

gsave
  300 300 translate             % Set origin to (300, 300)
  45 rotate                     % Rotate coordinates by 45 degrees
  0.5 1 scale                   % Scale coordinates
  0 0 box stroke                % Draw box
  75 0 moveto
  (Everything) show
grestore

showpage