| 628 | } |
| 629 | |
| 630 | void xFXanimUVSetAngle(F32 angle) |
| 631 | { |
| 632 | F32 sin = isin(angle); |
| 633 | F32 cos = icos(angle); |
| 634 | xFXanimUVRotMat0[0] = cos; |
| 635 | xFXanimUVRotMat0[1] = -sin; |
| 636 | xFXanimUVRotMat1[0] = sin; |
| 637 | xFXanimUVRotMat1[1] = cos; |
| 638 | } |
| 639 | |
| 640 | void xFXanimUV2PSetScale(const xVec3* scale) |
| 641 | { |
no test coverage detected