Code formatting in basics
This commit is contained in:
parent
67cb6c9fea
commit
4799a7fe49
1 changed files with 0 additions and 3 deletions
|
@ -18,17 +18,14 @@ struct Vector3
|
|||
Vector3(float x, float y, float z);
|
||||
|
||||
Vector3 &operator=(const Vector3 &v);
|
||||
|
||||
Vector3 &operator*=(const float &rhs);
|
||||
Vector3 &operator/=(const float &rhs);
|
||||
Vector3 &operator+=(const Vector3 &rhs);
|
||||
Vector3 &operator-=(const Vector3 &rhs);
|
||||
|
||||
Vector3 operator*(const float &rhs) const;
|
||||
Vector3 operator/(const float &rhs) const;
|
||||
Vector3 operator+(const Vector3 &rhs) const;
|
||||
Vector3 operator-(const Vector3 &rhs) const;
|
||||
|
||||
Vector3 operator-() const;
|
||||
|
||||
float length2() const;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue