fix isVerySimilar

This commit is contained in:
SamGondelman 2017-09-11 11:24:24 -07:00 committed by Andrew Meadows
parent cbd20f89dd
commit c39ac93fc8

View file

@ -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);
}