Skip to content

et_Vec3f

DeveloperGY edited this page Apr 13, 2023 · 1 revision

Declaration

typedef struct s_Vec3f
{
    float x;
    float y;
    float z;
} et_Vec3f;

Members

float x: The x component of the vector
float y: The y component of the vector
float z: The z component of the vector

Description

et_Vec3f represents a generic vector in 3D space

Clone this wiki locally