Advertisement
Guest User

kreise

a guest
Nov 18th, 2017
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. public void draw() {
  2. int i = 30;
  3. for (int n = WIDTH/15; n < WIDTH; n += n ) {
  4. i = 2*i;
  5. int x = i+300;
  6. int y = i+300;
  7. Ellipse firstRow = new Ellipse ( n, HEIGHT - 1300, x , y , new Color(200, 150, 170));
  8. firstRow.draw();
  9. }
  10.  
  11.  
  12.  
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement