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