diff --git a/src/Shapes/Sphere.cpp b/src/Shapes/Sphere.cpp index 303e6e351..f08f8d923 100644 --- a/src/Shapes/Sphere.cpp +++ b/src/Shapes/Sphere.cpp @@ -74,7 +74,7 @@ template bool Sphere::operator%(const LineSe } template bool Sphere::operator%(const Sphere& other) const { - return (_position - other._position).dot() < Math::pow<2>(_radius+other._radius); + return (_position - other._position).dot() < Math::pow<2>(_radius + other._radius); } template Collision Sphere::operator/(const Sphere& other) const {