| 411 | } |
| 412 | |
| 413 | Float3 Float3::Transform(const Float3& v, const Float3x3& m) |
| 414 | { |
| 415 | XMVECTOR vec = v.ToSIMD(); |
| 416 | vec = XMVector3TransformCoord(vec, m.ToSIMD()); |
| 417 | return Float3(vec); |
| 418 | } |
| 419 | |
| 420 | Float3 Float3::Transform(const Float3& v, const Float4x4& m) |
| 421 | { |
nothing calls this directly
no test coverage detected