| 217 | } |
| 218 | |
| 219 | Matrix3D Matrix3D::MakeScale(float scale) |
| 220 | { |
| 221 | return (Matrix3D(scale, 0.0F, 0.0F, 0.0F, scale, 0.0F, 0.0F, 0.0F, scale)); |
| 222 | } |
| 223 | |
| 224 | Matrix3D Matrix3D::MakeScale(float sx, float sy, float sz) |
| 225 | { |
nothing calls this directly
no test coverage detected