| 799 | } |
| 800 | |
| 801 | Float3x3 Float3x3::ScaleMatrix(float s) |
| 802 | { |
| 803 | Float3x3 m; |
| 804 | m._11 = m._22 = m._33 = s; |
| 805 | return m; |
| 806 | } |
| 807 | |
| 808 | Float3x3 Float3x3::ScaleMatrix(const Float3& s) |
| 809 | { |
nothing calls this directly
no outgoing calls
no test coverage detected