| 32 | } |
| 33 | |
| 34 | RealVector2D Math::unitVectorOfAngle(float angle) |
| 35 | { |
| 36 | return {sinf(angle * Const::DegToRad), -cosf(angle * Const::DegToRad)}; |
| 37 | } |
| 38 | |
| 39 | RealMatrix2D Math::calcRotationMatrix(float angle) |
| 40 | { |
nothing calls this directly
no outgoing calls
no test coverage detected