mirror of
https://github.com/zeldaret/ss
synced 2026-08-17 21:33:05 -04:00
start matching some d/snd things
This commit is contained in:
@@ -4,6 +4,7 @@
|
||||
#include "common.h"
|
||||
#include "egg/math/eggQuat.h"
|
||||
#include "egg/math/eggVector.h"
|
||||
#include "nw4r/math/math_types.h"
|
||||
|
||||
namespace EGG {
|
||||
|
||||
@@ -55,6 +56,14 @@ struct Matrix34f {
|
||||
void multiplyTo(const Matrix34f &m2, Matrix34f &to) const;
|
||||
void dump();
|
||||
|
||||
operator nw4r::math::MTX34 *() {
|
||||
return (nw4r::math::MTX34 *)this;
|
||||
}
|
||||
|
||||
operator const nw4r::math::MTX34 *() const {
|
||||
return (nw4r::math::MTX34 *)this;
|
||||
}
|
||||
|
||||
public:
|
||||
void concat(const Matrix34f &, Matrix34f &) const;
|
||||
void rotate(const Vector3f &rpy) const;
|
||||
|
||||
Reference in New Issue
Block a user