Skip to content

Commit cac0e4c

Browse files
authored
remove more unless lines
1 parent 69941d8 commit cac0e4c

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

SingleFile/main.cpp

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -133,8 +133,6 @@ class vec3 {
133133
vec3 operator*(const vec3& in) { return vec3(x * in.x, y * in.y, z * in.z); }
134134
vec3 operator/(const vec3& in) { return vec3(x / in.x, y / in.y, z / in.z); }
135135
float dot(float* a) { return x * a[0] + y * a[1] + z * a[2]; }
136-
float lengthsqr() { return (x * x + y * y + z * z); }
137-
float length2d() { return sqrt(x * x + y * y); }
138136
void clear() { x = y = z = 0.f; }
139137
};
140138
struct SPlayerInfo {

0 commit comments

Comments
 (0)