diff options
| author | robojumper <robojumper@gmail.com> | 2024-09-28 00:19:00 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-09-27 18:19:00 -0400 |
| commit | 3829ee6d4854a18bb6c19ffd1e250632946c0206 (patch) | |
| tree | 219ed1485d604a50bbb232bcd3e44d54dcaebdf6 /include/rvl | |
| parent | 0f9ef3d33c5772d5240bfa1ff209d81abc934376 (diff) | |
Rough dynamic collision setup (#24)
* Rough collider shape setup
* d_a_obj_toD3_stone_figure OK
* Cleanup
* Cleanup 2
Diffstat (limited to 'include/rvl')
| -rw-r--r-- | include/rvl/MTX/mtxvec.h | 1 | ||||
| -rw-r--r-- | include/rvl/MTX/vec.h | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/include/rvl/MTX/mtxvec.h b/include/rvl/MTX/mtxvec.h index ff00123f..b744d6f4 100644 --- a/include/rvl/MTX/mtxvec.h +++ b/include/rvl/MTX/mtxvec.h @@ -7,6 +7,7 @@ extern "C" { #endif void PSMTXMultVec(const Mtx, const Vec *, Vec *); +void PSMTXMultVecSR(const Mtx, const Vec *, Vec *); #ifdef __cplusplus } diff --git a/include/rvl/MTX/vec.h b/include/rvl/MTX/vec.h index cfc4410c..bed89af0 100644 --- a/include/rvl/MTX/vec.h +++ b/include/rvl/MTX/vec.h @@ -7,6 +7,7 @@ extern "C" { #endif void PSVECAdd(const Vec *, const Vec *, Vec *); +void PSVECSubtract(const Vec *, const Vec *, Vec *); void PSVECScale(const Vec *, Vec *, f32); void PSVECNormalize(const Vec *, Vec *); f32 PSVECMag(const Vec *); |
