magnitude property

double magnitude

Get the straight line (Euclidean) distance between the origin (0, 0) and this point.

Implementation

double get magnitude => sqrt(x * x + y * y);