NSMBW-Decomp
A decompilation of New Super Mario Bros. Wii
Loading...
Searching...
No Matches
mtxtypes.h
1#ifndef RVL_SDK_MTX_TYPES_H
2#define RVL_SDK_MTX_TYPES_H
3#include <types.h>
4#ifdef __cplusplus
5extern "C" {
6#endif
7
8typedef f32 Mtx[3][4];
9typedef f32 Mtx44[4][4];
10
11typedef struct Vec {
12 f32 x, y, z;
13} Vec;
14
15typedef struct Vec2 {
16 f32 x, y;
17} Vec2;
18
19typedef struct Quaternion {
20 f32 x, y, z, w;
22
23#ifdef __cplusplus
24}
25#endif
26#endif
Definition mtxtypes.h:11