distanceTo method

double distanceTo(
  1. EpitaphVertex other
)

Returns the euclidean distance from this EpitaphVertex to another.

Implementation

double distanceTo(EpitaphVertex other) => point.distanceTo(other.point);