jdsl.extension.LEDA.Layout.Geometry
Interface Point

All Known Implementing Classes:
Vector2D

public abstract interface Point

Common methods of a point in a two dimensional space.


Method Summary
 void moveRelX(double x)
          Move current point relativ to first component.
 void moveRelY(double y)
          Move current point relativ to second component.
 double x()
          Returns first component.
 double y()
          Returns seconed component.
 

Method Detail

x

public double x()
Returns first component.

y

public double y()
Returns seconed component.

moveRelX

public void moveRelX(double x)
Move current point relativ to first component.

moveRelY

public void moveRelY(double y)
Move current point relativ to second component.