menu
three_js_math package
documentation
rotation/quaternion.dart
Quaternion
dot method
dot method
dark_mode
light_mode
dot
method
double
dot
(
Quaternion
v
)
Implementation
double dot(Quaternion v) { return _x * v._x + _y * v._y + _z * v._z + _w * v._w; }
three_js_math package
documentation
rotation/quaternion
Quaternion
dot method
Quaternion class