chore(vector): reformat C3Vector

This commit is contained in:
fallenoak 2020-11-23 22:30:21 -06:00
parent e401ad55b0
commit eba3f5734a
No known key found for this signature in database
GPG key ID: 7628F8E61AEA070D

View file

@ -13,7 +13,7 @@ class C3Vector {
C3Vector(float x, float y, float z) C3Vector(float x, float y, float z)
: x(x) : x(x)
, y(y) , y(y)
, z(z){}; , z(z) {};
C3Vector& operator*=(float a); C3Vector& operator*=(float a);
float SquaredMag() const; float SquaredMag() const;
}; };