menu
oimo_physics package
documentation
math/vec3.dart
Vec3
dot method
dot method
dark_mode
light_mode
dot
method
double
dot
(
Vec3
v
)
Get the dot product with respect to
v
Implementation
double dot (Vec3 v ) { return x * v.x + y * v.y + z * v.z; }
oimo_physics package
documentation
math/vec3
Vec3
dot method
Vec3 class