Blame view

carre_tournant.ps 325 Bytes
07443681   Thorsieger   first commit
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
  %rosace_de_carre%
  
  /ccarre {
      newpath
      moveto
      0 200 rlineto
      200 0 rlineto
      0 -200 rlineto
      closepath
      stroke
  } def
  
  /ccircle {
      0 360 arc
      stroke
  } def
  
  300 400 translate
  
  5 {
      0 0 200 ccircle
      6 {
          0 0 ccarre
          060 rotate
      } repeat
      0.5 0.5 scale
      45 rotate
  } repeat