1 import org.jdelaunay.delaunay.error.DelaunayError;
 
    2 import org.jdelaunay.delaunay.geometries.DPoint;
 
    4 import com.vividsolutions.jts.geom.Coordinate;
 
   21     public Node(
double x, 
double y){
 
   30     public Node(Coordinate coordinate){
 
   39     public Node(DPoint dPoint){
 
   57         return (
int)Math.round(x);
 
   73         return (
int)Math.round(y);
 
  101         return new Coordinate(x, y);
 
  110             return new DPoint(x, y, 0);
 
  111         } 
catch (DelaunayError e) {