Advertisement
gregoryfenton

Untitled

Nov 15th, 2022 (edited)
23
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. # Line pattern 100x100 by Greg, labby.co.uk
  2. g0 x-240 y120 # home X Y
  3. g0 x10 y-10 # move to 10,10 from top
  4. # we will consider x10 y-10 as top left of the pattern
  5. g1 x0 y-100 # draw line top to bottom
  6. g1 x100 y0 # draw line bottom left to bottom right
  7.  
  8. g1 x-100 y10 # left,-90
  9. g0 x100 y10 # left,-80
  10. g1 x90 y-20 # 90,bottom
  11. g0 x-10 y0 # 80,bottom
  12. g1 x-80 y30 # left,70
  13. g0 x0 y10 # left,60
  14. g1 x70 y-40 # 70,bottom
  15. g0 x-10 y0 # 60,bottom
  16. g1 x-60 y50 # left,50
  17. g0 x0 y10 # left,40
  18. g1 x50 y-60 # 50,bottom
  19. g0 x-10 y0 # 40,bottom
  20. g1 x-40 y70 # left,30
  21. g0 x0 y10 # left,20
  22. g1 x30 y-80 # 30,bottom
  23. g0 x-10 y0 # 20,bottom
  24. g1 x-20 y90 # left,10
  25.  
  26. g0 x-240 y120 # home x y
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement