| 919 | #ifndef TERATHON_NO_SIMD |
| 920 | |
| 921 | vec_float Terathon::TransformVector3D(const Transform3D& m, vec_float v) |
| 922 | { |
| 923 | return (VecTransformVector3D(VecLoad(&m(0,0)), VecLoad(&m(0,1)), VecLoad(&m(0,2)), v)); |
| 924 | } |
| 925 | |
| 926 | vec_float Terathon::TransformPoint3D(const Transform3D& m, vec_float p) |
| 927 | { |
nothing calls this directly
no test coverage detected