mirror of
https://github.com/guezoloic/t3dsr.git
synced 2026-01-25 09:34:24 +00:00
10 lines
141 B
C
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
|