-
Notifications
You must be signed in to change notification settings - Fork 0
et_Quat
DeveloperGY edited this page Apr 13, 2023
·
1 revision
typedef struct s_Quaternion
{
float w;
float i;
float j;
float k;
} et_Quat;float w: The scalar component of the quaternion
float i: The coefficient of
float j: The coefficient of
float k: The coefficient of
et_Quat represents a quaternion defined as