menu
orkitt package
documentation
utils.dart
EuclideanDistance
distanceTo method
distanceTo method
dark_mode
light_mode
distanceTo
method
double
distanceTo
(
Point
<
num
>
other
)
Implementation
double distanceTo(Point other) { return sqrt(pow(x - other.x, 2) + pow(y - other.y, 2)); }
orkitt package
documentation
utils
EuclideanDistance
distanceTo method
EuclideanDistance extension on
Point
<
num
>