Advertisement
Guest User

LOGO Crazy Quilt

a guest
Feb 4th, 2025
13
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 KB | None | 0 0
  1. cs
  2. to diamondLines
  3. pd repeat 4 [fd 50 rt 90]
  4. fd 25 rt 45
  5. repeat 4 [fd 35 rt 90]
  6. rt 45 fd 50 rt -180 fd 25
  7. rt 90 fd 25 rt -180 fd 25
  8. fd 25 rt -90
  9. pu
  10. fd 25 rt -90
  11.  
  12. end
  13.  
  14. to blank
  15. pd repeat 4 [fd 50 rt 90]
  16. pu
  17. fd 25 rt 45
  18. repeat 4 [fd 35 rt 90]
  19. pu
  20. rt 45 fd 50 rt 90 fd 25 rt -180
  21. end
  22.  
  23. to diamondblank
  24. pd repeat 4 [fd 50 rt 90]
  25. fd 25 rt 45
  26. repeat 4 [fd 35 rt 90]
  27. pu
  28. rt 45 fd 50 rt 90 fd 25 rt -180
  29.  
  30. end
  31.  
  32. to randopattern
  33. make "p random 3
  34. if :p=0 [diamondlines]
  35. if :p=1 [diamondblank]
  36. if :p=2 [blank]
  37. end
  38.  
  39. setpos [-180 100]
  40. make "repeats 4
  41. repeat 6[
  42. repeat 4[
  43. randopattern
  44. randopattern
  45. ]
  46. pu
  47. rt -90 fd :repeats*50*2 rt -90
  48. fd 50 rt 180
  49. ]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement