From c39ac93fc8a5d15eacf11ba6a9d2629f63a580ca Mon Sep 17 00:00:00 2001 From: SamGondelman Date: Mon, 11 Sep 2017 11:24:24 -0700 Subject: [PATCH] fix isVerySimilar --- libraries/shared/src/ViewFrustum.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/shared/src/ViewFrustum.cpp b/libraries/shared/src/ViewFrustum.cpp index 7c93b103cf..ccdeb830b6 100644 --- a/libraries/shared/src/ViewFrustum.cpp +++ b/libraries/shared/src/ViewFrustum.cpp @@ -339,7 +339,7 @@ bool ViewFrustum::isVerySimilar(const ViewFrustum& other) const { closeEnough(_aspectRatio, other._aspectRatio, MIN_RELATIVE_ERROR) && closeEnough(_nearClip, other._nearClip, MIN_RELATIVE_ERROR) && closeEnough(_farClip, other._farClip, MIN_RELATIVE_ERROR) && - closeEnough(_focalLength, other._focalLength, MIN_RELATIVE_ERROR), + closeEnough(_focalLength, other._focalLength, MIN_RELATIVE_ERROR) && closeEnough(_centerSphereRadius, other._centerSphereRadius, MIN_RELATIVE_ERROR); }