lt.monarch.math.geom
Interface GeneralPoint

All Known Implementing Classes:
Point2D, Point3D, PolarPoint

public interface GeneralPoint

Defines a general point in a n-dimensional coordinate space. Each coordinate value has to be in range [0,1]. Objects, which implement this interface can not be used directly - they have to be casted to the appropriate concrete class before usage.


Method Summary
Modifier and Type Method and Description
 double getX()
           
 double getY()
           
 void setX(double x)
           
 void setY(double y)
           
 

Method Detail

getX

double getX()

setX

void setX(double x)

getY

double getY()

setY

void setY(double y)