menu
flare_flutter package
documentation
base/math/vec2d.dart
Vec2D
length static method
length static method
dark_mode
light_mode
length
static method
double
length
(
Vec2D
a
)
Implementation
static double length(Vec2D a) { double x = a[0]; double y = a[1]; return sqrt(x * x + y * y); }
flare_flutter package
documentation
base/math/vec2d
Vec2D
length static method
Vec2D class