Files
physx-go/pgo/physx-c/CPxQuat.h
2022-01-28 05:49:27 +04:00

21 lines
368 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);
CPxAPI CPxInline CSTRUCT CPxQuat NewCPxQuatXYZW(float x, float y, float z, float w);
#ifdef __cplusplus
}
#endif
#endif // !CPxQuat_H