Skip to content

Commit

Permalink
remove more unless lines
Browse files Browse the repository at this point in the history
  • Loading branch information
exploitmafia authored Mar 31, 2021
1 parent 69941d8 commit cac0e4c
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions SingleFile/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -133,8 +133,6 @@ class vec3 {
vec3 operator*(const vec3& in) { return vec3(x * in.x, y * in.y, z * in.z); }
vec3 operator/(const vec3& in) { return vec3(x / in.x, y / in.y, z / in.z); }
float dot(float* a) { return x * a[0] + y * a[1] + z * a[2]; }
float lengthsqr() { return (x * x + y * y + z * z); }
float length2d() { return sqrt(x * x + y * y); }
void clear() { x = y = z = 0.f; }
};
struct SPlayerInfo {
Expand Down

0 comments on commit cac0e4c

Please sign in to comment.