Example usage for java.awt.geom Point2D.Double toString

List of usage examples for java.awt.geom Point2D.Double toString

Introduction

In this page you can find the example usage for java.awt.geom Point2D.Double toString.

Prototype

public String toString() 

Source Link

Document

Returns a string representation of the object.

Usage

From source file:Navigation.Vertex.java

public Vertex(Point2D.Double p) {
    name = p.toString();
    myPoint = p;
}