mirror of
https://github.com/bloeys/physx-go.git
synced 2025-12-29 07:58:20 +00:00
20 lines
281 B
C
Executable File
20 lines
281 B
C
Executable File
#ifndef CPxQuat_H
|
|
#define CPxQuat_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
struct CPxQuat
|
|
{
|
|
float x, y, z, w;
|
|
};
|
|
|
|
CPxAPI CPxInline CSTRUCT CPxQuat NewCPxQuat(float angleRads, float x, float y, float z);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif // !CPxQuat_H
|