| 893 | } |
| 894 | |
| 895 | Float3x3 Float3x3::ScaleMatrix(float s) |
| 896 | { |
| 897 | Float3x3 m; |
| 898 | m._11 = m._22 = m._33 = s; |
| 899 | return m; |
| 900 | } |
| 901 | |
| 902 | Float3x3 Float3x3::ScaleMatrix(const Float3& s) |
| 903 | { |
nothing calls this directly
no outgoing calls
no test coverage detected