FileDocCategorySizeDatePackage
TwoDPoint.javaAPI DocExample345Mon Feb 13 12:14:02 GMT 2006None

TwoDPoint

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 doublegetX()

    return x;
  
public doublegetY()

    return y;
  
public java.lang.StringtoString()

    return "[TwoDPoint:x=" + this.x + ", y=" + y +"]";