double distanceTo(Point<T> other)

Returns the distance between this and other.

Source

double distanceTo(Point<T> other) {
  var dx = x - other.x;
  var dy = y - other.y;
  return sqrt(dx * dx + dy * dy);
}