double distanceTo(
Point<T> other
)

Returns the distance between this and other.

Source

/**
 * Returns the distance between `this` and [other].
 */
double distanceTo(Point<T> other) {
  var dx = x - other.x;
  var dy = y - other.y;
  return sqrt(dx * dx + dy * dy);
}