Advertisement
sutasuu

pic3(conc.circ)

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