Advertisement
Guest User

Untitled

a guest
Mar 26th, 2017
137
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. %%BoundingBox: xmin ymin xmax ymax
  2. %%BeginProlog
  3. /Times-Roman findfont % get the basic font
  4. 24 scalefont % scale the font to 12 points
  5. setfont % make it the current font
  6.  
  7. /arrowhead {% stack: s x1 y1, current point: x0 y0
  8. gsave
  9. currentpoint % s x1 y1 x0 y0
  10. 4 2 roll exch % s x0 y0 y1 x1
  11. 4 -1 roll exch % s y0 y1 x0 x1
  12. sub 3 1 roll % s x1-x2 y0 y1
  13. sub exch % s y0-y1 x1-x2
  14. atan rotate % rotate over arctan((y0-y1)/(x1-x2))
  15. dup scale % scale by factor s
  16. -7 2 rlineto 1 -2 rlineto -1 -2 rlineto
  17. closepath fill % fill arrowhead
  18. grestore
  19. newpath
  20. } def
  21.  
  22. %%EndProlog
  23.  
  24.  
  25. 250 800 20 0 360 arc closepath
  26. stroke
  27. 150 650 20 0 360 arc closepath
  28. stroke
  29. 350 650 20 0 360 arc closepath
  30. stroke
  31. 250 500 20 0 360 arc closepath
  32. stroke
  33. 50 500 20 0 360 arc closepath
  34. stroke
  35. 500 500 20 0 360 arc closepath
  36. stroke
  37.  
  38. newpath
  39. 244 792 moveto
  40. (1) show
  41.  
  42. newpath
  43. 144 642 moveto
  44. (2) show
  45.  
  46. newpath
  47. 343 642 moveto
  48. (3) show
  49.  
  50. newpath
  51. 44 494 moveto
  52. (4) show
  53.  
  54. newpath
  55. 242 494 moveto
  56. (5) show
  57.  
  58. newpath
  59. 494 494 moveto
  60. (6) show
  61.  
  62.  
  63. newpath
  64. 237 784 moveto 158 668 lineto stroke
  65. newpath 158 668 moveto 3 2000 3500 arrowhead
  66.  
  67. newpath
  68. 265 785 moveto 343 668 lineto stroke
  69. newpath 343 668 moveto 3 -3000 5500 arrowhead
  70.  
  71. newpath
  72. 137 634 moveto 60 518 lineto stroke
  73. newpath 60 518 moveto 3 2000 3500 arrowhead
  74.  
  75. newpath
  76. 164 635 moveto 240 518 lineto stroke
  77. newpath 240 518 moveto 3 -3000 5500 arrowhead
  78.  
  79. newpath
  80. 169 645 moveto 480 503 lineto stroke
  81. newpath 480 503 moveto 3 -3000 2100 arrowhead
  82.  
  83. newpath
  84. 332 641 moveto 68 506 lineto stroke
  85. newpath 68 506 moveto 3 2000 1500 arrowhead
  86.  
  87. newpath
  88. 341 631 moveto 263 515 lineto stroke
  89. newpath 263 515 moveto 3 2000 3000 arrowhead
  90.  
  91. newpath
  92. 365 635 moveto 491 518 lineto stroke
  93. newpath 491 518 moveto 3 -3000 3700 arrowhead
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement