mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-25 17:14:59 +02:00
fix isVerySimilar
This commit is contained in:
parent
cbd20f89dd
commit
c39ac93fc8
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue