Files
t3dsr/include/math/vector3.h

10 lines
141 B
C

#ifndef VECTOR3_H
#define VECTOR3_H
typedef struct {
float x, y, z;
} Vec3;
Vec3* vec3(float x, float y, float z);
#endif // VECTOR3_H