diff --git a/ClassicalSharp/Math/Physics/IntersectionUtils.cs b/ClassicalSharp/Math/Physics/IntersectionUtils.cs index 5bbe96b1f..5931251ed 100644 --- a/ClassicalSharp/Math/Physics/IntersectionUtils.cs +++ b/ClassicalSharp/Math/Physics/IntersectionUtils.cs @@ -72,7 +72,7 @@ namespace ClassicalSharp.Physics { t0 = tmin; t1 = tmax; - return t0 >= 0 && t1 >= 0; + return t0 >= 0; } } }