| 500 | } |
| 501 | |
| 502 | static void vec2vecMat(xMat4x3* m, xVec3* v1, xVec3* v2) |
| 503 | { |
| 504 | xVec3 v3; |
| 505 | xVec3Cross(&v3, v1, v2); |
| 506 | F32 f1 = xasin(xVec3Normalize(&v3, &v3)); |
| 507 | xMat4x3Rot(m, &v3, f1); |
| 508 | } |
| 509 | |
| 510 | static void bakeMorphAnim(RpGeometry* geom, void* anim) |
| 511 | { |
nothing calls this directly
no test coverage detected