mirror of
https://github.com/guezoloic/t3dsr.git
synced 2026-01-25 13:34:24 +00:00
feat(vector): Initialize module and add constructor
This commit is contained in:
10
include/math/vector3.h
Normal file
10
include/math/vector3.h
Normal file
@@ -0,0 +1,10 @@
|
||||
#ifndef VECTOR3_H
|
||||
#define VECTOR3_H
|
||||
|
||||
typedef struct {
|
||||
float x, y, z;
|
||||
} Vec3;
|
||||
|
||||
Vec3* vec3(float x, float y, float z);
|
||||
|
||||
#endif // VECTOR3_H
|
||||
Reference in New Issue
Block a user