Advertisement
Guest User

Untitled

a guest
Mar 20th, 2021
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.07 KB | None | 0 0
  1. .fam H
  2. .pl 12i
  3. .cs HR 40
  4. .ps 32
  5. \S'-16'
  6. .PS 6.5
  7. linethick = 0.5
  8.  
  9. define staves {
  10. linespacing = 0.5
  11. for y = $1 to $1+(linespacing*5) by linespacing do {
  12. line from (0, y) to (50, y+(50*0.28));
  13. }
  14. line from (0, $1) to (0, $1+(linespacing*5))
  15. line from (50, $1+(50*0.28)) to (50, $1+(50*0.28)+(linespacing*5))
  16. }
  17. for i = 0 to 70 by 10 do {
  18. staves(i)
  19. }
  20.  
  21. define diagtext {
  22. line from (0, $1 + fontoffset) to ($2, $1-($2*0.28) + fontoffset) $3 aligned color "red" invis $4
  23. }
  24. fontoffset = 0.8
  25. diagtext(80, 20, "BORING")
  26. diagtext(70, 27, "FORMLESS")
  27. diagtext(60, 27.5, "NONSENSE")
  28.  
  29. fontoffset = 1
  30. command ".ps 16"
  31.  
  32. diagtext(45, 32, "EXPERIMENTAL MUSIC")
  33. diagtext(35, 32, "AND THE AESTHETICS")
  34. diagtext(25, 17, "OF FAILURE")
  35.  
  36. fontoffset = 0.5
  37. command ".cs HR 18"
  38. diagtext(5, 12, "eldritch Priest", color "grey15")
  39.  
  40. copy thru { circle at ($1, $2) filled 0.66 rad 0.35 thick 0 } until "END"
  41. 50 0
  42. 49 0
  43. 48 0
  44. 49.5 1
  45. 48.5 1
  46. 49 2
  47. END
  48. line from (50, 0) to (49, 2) thick 4 color "dimgrey"
  49. line from (49, 0) to (48.5, 1) thick 4 color "dimgrey"
  50.  
  51. .PE
  52.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement