com.goebl.simplify.Point Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of simplify Show documentation
Show all versions of simplify Show documentation
2D/3D polyline simplification
The newest version!
package com.goebl.simplify;
/**
* Access to X and Y coordinates (2D-Point).
*
* @author hgoebl
* @since 06.07.13
*/
public interface Point {
double getX();
double getY();
}