diff --git a/a8/vec3.cc b/a8/vec3.cc new file mode 100644 index 0000000..7b31c03 --- /dev/null +++ b/a8/vec3.cc @@ -0,0 +1,13 @@ +#include +#include + +#include +#include +#include + +#include + +namespace a8 +{ + +} diff --git a/a8/vec3.h b/a8/vec3.h new file mode 100644 index 0000000..6ea9469 --- /dev/null +++ b/a8/vec3.h @@ -0,0 +1,16 @@ +#ifndef A8_VEC3_H +#define A8_VEC3_H + +namespace a8 +{ + struct Vec3 + { + float x = 0.0f; + float y = 0.0f; + float z = 0.0f; + + Vec3(float _x = 0.0f, float _y = 0.0f, float _z = 0.0f):x(_x), y(_y), z(_z) {}; + }; +} + +#endif