NSMBW-Decomp
A decompilation of New Super Mario Bros. Wii
Loading...
Searching...
No Matches
mtx.hpp
1#pragma once
2#include <lib/rvl/mtx/mtx.h>
3
4namespace nw4r {
5namespace math {
6
7struct _MTX34 {
8 union {
9 f32 mData[3][4];
10 Mtx mtx;
11 };
12};
13
14/// @brief A 3x4 matrix.
15struct MTX34 : public _MTX34 {};
16
17} // namespace math
18} // namespace nw4r
float Mtx[3][4]
A 3x4 matrix.
Definition mtx.h:12
Math library.
Definition aabb.hpp:6
A 3x4 matrix.
Definition mtx.hpp:15