More photons.

This commit is contained in:
2017-03-15 15:55:35 -04:00
parent c29d64583f
commit 811e0a0602
4 changed files with 26 additions and 36 deletions

View File

@@ -20,11 +20,7 @@ struct Vec3
Vec3(float _x = 0.0f, float _y = 0.0f, float _z = 0.0f): x(_x), y(_y), z(_z) { }
Vec3(const Vec3 & other) {
x = other.x;
y = other.y;
z = other.z;
}
Vec3(const Vec3 & other) = default;
inline bool equalFloat(const float x, const float y)
{