mirror of
https://github.com/encounter/mkdd.git
synced 2026-03-30 11:30:02 -07:00
14 lines
196 B
C
14 lines
196 B
C
#ifndef MATHHELPER_H
|
|
#define MATHHELPER_H
|
|
|
|
#include <dolphin/mtx.h>
|
|
|
|
|
|
inline void QuaternionReset(Quaternion *pDest)
|
|
{
|
|
const Quaternion q = {0.0f, 0.0f, 0.0f, 1.0f};
|
|
*pDest = q;
|
|
}
|
|
|
|
|
|
#endif |