mirror of
https://github.com/projectPiki/pikmin2.git
synced 2024-11-27 23:30:27 +00:00
20 lines
256 B
C
20 lines
256 B
C
#ifndef _QUAT_H
|
|
#define _QUAT_H
|
|
|
|
#include "types.h"
|
|
#include "Vector3.h"
|
|
|
|
// Quat(ernion)
|
|
struct Quat {
|
|
Quat();
|
|
Quat(float, Vector3f);
|
|
void set(float a, float b, float c, float d);
|
|
|
|
f32 w, // _00
|
|
x, // _04
|
|
y, // _08
|
|
z; // _0C
|
|
};
|
|
|
|
#endif
|