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