Advertisement
sutasuu

pic5(whitecirc)

Oct 30th, 2024 (edited)
15
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Asymptote 0.31 KB | Source Code | 0 0
  1. import geometry;
  2.  
  3. size(9cm,0);
  4. defaultpen(fontsize(12pt));
  5. dotfactor = 4;
  6.  
  7. fill(box( (-1,-1), (0,0) ), blue);
  8. fill(box( (1,1), (0,0) ), green);
  9. fill(box( (1,-1), (0,0) ), red);
  10. fill(box( (-1,1), (0,0) ), yellow);
  11.  
  12. for(real i = 0.1; i<1; i+=0.1){
  13. fill( circle(origin, i), white+opacity(0.5-(i/3)) );
  14. }
  15.  
  16.  
Tags: Asymptote
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement