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

Method operator *

TSFlector2D.cpp:68–71  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

66
67
68Motor2D Terathon::operator *(const Flector2D& a, const Flector2D& b)
69{
70 return (Motor2D(a.z * b.y - a.y * b.z - a.x * b.w - b.x * a.w, a.x * b.z - a.z * b.x - a.y * b.w - b.y * a.w, a.y * b.x - a.x * b.y, a.x * b.x + a.y * b.y));
71}
72
73Flector2D Terathon::operator *(const Flector2D& a, const Motor2D& b)
74{

Callers

nothing calls this directly

Calls 2

Motor2DClass · 0.85
Flector2DClass · 0.85

Tested by

no test coverage detected