Advertisement
razaron

GUI Library/Square

Jul 10th, 2013
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.18 KB | None | 0 0
  1.  
  2. public class Square {
  3.     double x1, y1, x2, y2;
  4.    
  5.     public Square(double x1, double y1, double x2, double y2){
  6.         this.x1=x1;
  7.         this.x2=x2;
  8.         this.y1=y1;
  9.         this.y2=y2;
  10.     }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement