menu
freehand package
documentation
models/vec.dart
Vec
dist static method
dist static method
dark_mode
light_mode
dist
static method
double
dist
(
Vec
a
,
Vec
b
)
Implementation
static double dist(Vec a, Vec b) => sqrt(pow(a.x - b.x, 2) + pow(a.y - b.y, 2));
freehand package
documentation
models/vec
Vec
dist static method
Vec class