Advertisement
j0h

alchemiac pentagram

j0h
Jan 8th, 2022
2,847
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MXML 1.26 KB | None | 0 0
  1. <svg height="2200" width="4000">
  2.     <polygon points="600 130,1100 480, 920 1100, 300 1100, 130 480"
  3.                          stroke="red"
  4.                          stroke-width="3"
  5.                          fill="white"                />
  6.  
  7. <!--
  8. cirlce epicenters are pentagon corner points;
  9. 60 13,
  10. 110 48,
  11. 92 110,
  12. 30 110,
  13. 13 48
  14. -->                      
  15. <circle cx="600" cy="130" r="100"   stroke="red" stroke-width="3" fill="white"/>
  16. <circle cx="1100" cy="480" r="100" stroke="red" stroke-width="3" fill="white"/>
  17. <circle cx="920" cy="1100" r="100" stroke="red" stroke-width="3" fill="white"/>
  18. <circle cx="300" cy="1100" r="100" stroke="red" stroke-width="3" fill="white"/>
  19. <circle cx="130" cy="480" r="100"   stroke="red" stroke-width="3" fill="white"/>                         
  20.  
  21. <!-- sub circle: same points, smaller radius-->
  22. <circle cx="600" cy="130" r="66"   stroke="red" stroke-width="3" fill="white"/>
  23. <circle cx="1100" cy="480" r="66" stroke="red" stroke-width="3" fill="white"/>
  24. <circle cx="920" cy="1100" r="66" stroke="red" stroke-width="3" fill="white"/>
  25. <circle cx="300" cy="1100" r="66" stroke="red" stroke-width="3" fill="white"/>
  26. <circle cx="130" cy="480" r="66"   stroke="red" stroke-width="3" fill="white"/>                      
  27. </svg>                       
  28.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement