Advertisement
sutasuu

pic2(indexloop)

Nov 5th, 2024
10
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Asymptote 0.25 KB | Source Code | 0 0
  1. import geometry;
  2.  
  3. size(2cm,0);
  4. defaultpen(fontsize(12pt));
  5. dotfactor = 4;
  6.  
  7. fill(box((-0.5, -6 ), (0.5, -12) ), lightyellow+opacity(0.5));
  8.  
  9. for(int i=7; i<12; ++i){
  10.   for(int j=0; j<1; ++j)
  11.   {
  12.     label("$u_{"+string(i)+"}$", (j,-i));
  13.   }
  14. }
  15.  
  16.  
Tags: C++ Asymptote
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement