mirror of
https://github.com/overte-org/overte.git
synced 2025-04-26 13:36:12 +02:00
Missing EPSILON
This commit is contained in:
parent
0404b722e4
commit
c8af9c6f04
1 changed files with 1 additions and 1 deletions
|
@ -602,5 +602,5 @@ glm::vec3 randVector() {
|
||||||
}
|
}
|
||||||
|
|
||||||
bool isNonUniformScale(const glm::vec3& scale) {
|
bool isNonUniformScale(const glm::vec3& scale) {
|
||||||
return fabsf(scale.x - scale.y) > EPSILON || fabsf(scale.y - scale.z) > EPSILON || fabsf(scale.z - scale.x);
|
return fabsf(scale.x - scale.y) > EPSILON || fabsf(scale.y - scale.z) > EPSILON || fabsf(scale.z - scale.x) > EPSILON;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue