Flutter
vector_math_64
dot3 function
dot3
vector_math_64 library
Classes
Aabb2
Aabb3
Colors
Frustum
IntersectionResult
Matrix2
Matrix3
Matrix4
Obb3
Plane
Quad
Quaternion
Ray
SimplexNoise
Sphere
Triangle
Vector
Vector2
Vector3
Vector4
Constants
degrees2Radians
radians2Degrees
Functions
absoluteError
buildPlaneVectors
catmullRom
cross2
cross2A
cross2B
cross3
degrees
dot2
dot3
makeFrustumMatrix
makeInfiniteMatrix
makeOrthographicMatrix
makePerspectiveMatrix
makePlaneProjection
makePlaneReflection
makeViewMatrix
mix
pickRay
radians
relativeError
setFrustumMatrix
setInfiniteMatrix
setModelMatrix
setOrthographicMatrix
setPerspectiveMatrix
setRotationMatrix
setViewMatrix
smoothStep
unproject
dot3 function
double
dot3
(
Vector3
x
,
Vector3
y
)
3D dot product.
Implementation
double dot3(Vector3 x, Vector3 y) => x.dot(y);