lab4
Class Point

java.lang.Object
  extended by lab4.Point

public class Point
extends java.lang.Object


Constructor Summary
Point(double x, double y)
           
 
Method Summary
 double distance(Point other)
           
 boolean equals(java.lang.Object obj)
           
protected  int getIntX()
           
protected  int getIntY()
           
 double getX()
           
 double getY()
           
 int hashCode()
           
 Vector minus(Point other)
           
 Point plus(Vector v)
           
 java.lang.String toString()
           
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
 

Constructor Detail

Point

public Point(double x,
             double y)
Method Detail

getIntX

protected int getIntX()

getIntY

protected int getIntY()

getX

public double getX()

getY

public double getY()

plus

public Point plus(Vector v)

minus

public Vector minus(Point other)

distance

public double distance(Point other)

toString

public java.lang.String toString()
Overrides:
toString in class java.lang.Object

hashCode

public int hashCode()
Overrides:
hashCode in class java.lang.Object

equals

public boolean equals(java.lang.Object obj)
Overrides:
equals in class java.lang.Object