distanceTo method
Returns the distance between this
and other
.
Implementation
double distanceTo(Coordinate other)
{
return Math.sqrt( squaredDistance(other) );
}
Returns the distance between this
and other
.
double distanceTo(Coordinate other)
{
return Math.sqrt( squaredDistance(other) );
}