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

Function Dot

TSQuaternion.h:556–559  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

554 /// \related Quaternion
555
556 inline float Dot(const Quaternion& q1, const Quaternion& q2)
557 {
558 return (Dot(q1.xyz, q2.xyz) + q1.w * q2.w);
559 }
560
561 // ==============================================
562 // Geometric product

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected