File
Doc
Category
Size
Date
Package
TwoDPoint.java
API Doc
Example
345
Mon Feb 13 12:14:02 GMT 2006
None
TwoDPoint
java.lang.Object
public class TwoDPoint extends Object
Fields Summary
private double
x
private double
y
Constructors Summary
public TwoDPoint
(
double
x,
double
y)
this.x = x; this.y = y;
Methods Summary
public
double
getX
()
return x;
public
double
getY
()
return y;
public
java.lang.String
toString
()
return "[TwoDPoint:x=" + this.x + ", y=" + y +"]";
Java Code Source