LNXSDK/Kha/Kinc/Sources/kinc/math/quaternion.h

23 lines
268 B
C
Raw Normal View History

2025-01-22 16:18:30 +01:00
#pragma once
#include "core.h"
/*! \file quaternion.h
\brief Provides a basic quaternion type.
*/
#ifdef __cplusplus
extern "C" {
#endif
typedef struct kinc_quaternion {
float x;
float y;
float z;
float w;
} kinc_quaternion_t;
#ifdef __cplusplus
}
#endif