chore: initial commit

This commit is contained in:
fallenoak 2020-11-22 23:25:22 -06:00
commit c955dd6531
No known key found for this signature in database
GPG key ID: 7628F8E61AEA070D
16 changed files with 18109 additions and 0 deletions

View file

@ -0,0 +1,21 @@
#ifndef TEMPEST_VECTOR_C_3VECTOR_HPP
#define TEMPEST_VECTOR_C_3VECTOR_HPP
class C3Vector {
public:
// Member variables
float x = 0.0f;
float y = 0.0f;
float z = 0.0f;
// Member functions
C3Vector() = default;
C3Vector(float x, float y, float z)
: x(x)
, y(y)
, z(z){};
C3Vector& operator*=(float a);
float SquaredMag() const;
};
#endif