Advertisement
nelltbe

Untitled

Nov 20th, 2019
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. //diamond
  2. gfx_color(255,255,255); //black
  3. gfx_line(650,700,700,750);
  4. gfx_line(700,750,750,700);
  5. gfx_line(750,700,700,650);
  6. gfx_line(700,650,650,700);
  7.  
  8. gfx_color(0,128,0); //dark green
  9. gfx_line(850,700,900,750);
  10. gfx_line(900,750,950,700);
  11. gfx_line(950,700,900,650);
  12. gfx_line(900,650,850,700);
  13.  
  14. gfx_color(255,0,0);
  15. gfx_line(1050,700,1100,750);
  16. gfx_line(1100,750,1150,700);
  17. gfx_line(1150,700,1100,650);
  18. gfx_line(1100,650,1050,700);
  19.  
  20. //circle
  21. gfx_color(255,0,0); //red
  22. gfx_fillcircle(700,500,100);
  23.  
  24. gfx_color(0,128,0); //dark green
  25. gfx_fillcircle(900,500,100);
  26.  
  27. gfx_color(0,0,0); //black
  28. gfx_fillcircle(1100,500,100);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement