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

Function operator /

TSQuaternion.h:420–424  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

418 }
419
420 inline Quaternion operator /(const Quaternion& q, float s)
421 {
422 s = 1.0F / s;
423 return (Quaternion(q.xyz * s, q.w * s));
424 }
425
426 /// \brief Returns a boolean value indicating whether the two quaternions $q1$ and $q2$ are equal.
427 /// \related Quaternion

Callers

nothing calls this directly

Calls 3

QuaternionClass · 0.85
InverseFunction · 0.70
SquaredMagFunction · 0.70

Tested by

no test coverage detected