mirror of
https://github.com/projectPiki/pikmin2.git
synced 2025-02-25 16:20:52 +00:00
13 lines
178 B
C
13 lines
178 B
C
![]() |
#ifndef _MATRIX3F_H
|
||
|
#define _MATRIX3F_H
|
||
|
|
||
|
#include "types.h"
|
||
|
|
||
|
struct Matrix3f {
|
||
|
void makeIdentity();
|
||
|
void calcEigenMatrix(Matrix3f&, Matrix3f&);
|
||
|
|
||
|
f32 m_matrix[3][3];
|
||
|
};
|
||
|
|
||
|
#endif
|