MCPcopy Create free account
hub / github.com/EricLengyel/Terathon-Math-Library / Dot

Function Dot

TSVector3D.h:591–594  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

589 /// \related Vector3D
590
591 inline float Dot(const Vector3D& a, const Vector3D& b)
592 {
593 return (a.x * b.x + a.y * b.y + a.z * b.z);
594 }
595
596 inline float Dot(const Point3D& a, const Point3D& b)
597 {

Callers 2

ProjectFunction · 0.70
RejectFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected