| java.lang.Object net.mygwt.ui.client.util.Point
Point | public class Point (Code) | | Instances of this class represent places on the (x, y) coordinate plane.
See Also: Rectangle |
Field Summary | |
public int | x | public int | y |
Constructor Summary | |
public | Point(int x, int y) Constructs a new point with the given x and y coordinates. |
x | public int x(Code) | | The x coordinate of the point
|
y | public int y(Code) | | The y coordinate of the point
|
Point | public Point(int x, int y)(Code) | | Constructs a new point with the given x and y coordinates.
Parameters: x - the x coordinate of the new point Parameters: y - the y coordinate of the new point |
|
|