FileDocCategorySizeDatePackage
Points.javaAPI DocExample876Sat May 22 08:20:10 BST 2004None

Point2D

public class Point2D extends Object

Fields Summary
protected int
x
protected int
y
Constructors Summary
public Point2D()

    this.x=0;
    this.y=0;
  
public Point2D(int x, int y)

    this.x = x;
    this.y = y;
  
Methods Summary