Advertisement
Guest User

kreiyse

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