Advertisement
TankorSmash

Untitled

Sep 21st, 2012
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. int new_x = (2 + 2) / 3;
  2. int new_y = (2 * sqrt(3));
  3. int new_w = 100;
  4. int new_h = game_width / 2;
  5. Rectangle rect = new Rectange(new_x, new_y, new_w, new_h);
  6.  
  7. VERSUS
  8.  
  9. Rectangle rect = new Rectange((2 + 2) / 3, (2 * sqrt(3)), 100, game_width / 2);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement