summaryrefslogtreecommitdiff
path: root/indra/llmath/llcoordframe.h
diff options
context:
space:
mode:
authorAndrey Lihatskiy <alihatskiy@productengine.com>2025-04-17 23:57:00 +0300
committerAndrey Lihatskiy <alihatskiy@productengine.com>2025-04-17 23:57:00 +0300
commit082c9158b2ad961b747ca6a7bd55bc2a79f27b6a (patch)
tree39200c1ff454ae23c8fd5b76e4c891d26f92c32c /indra/llmath/llcoordframe.h
parent06a76eda6af9fbe36e40a749c44e590ad6cfe363 (diff)
parentc7ebde4ec9d3909c3c2f6503dc9096406297f26d (diff)
Merge branch 'develop' into marchcat/05-develop
# Conflicts: # indra/llmath/v2math.cpp # indra/llmath/v2math.h # indra/llmath/v3math.h # indra/llmath/v4math.h
Diffstat (limited to 'indra/llmath/llcoordframe.h')
-rw-r--r--indra/llmath/llcoordframe.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llmath/llcoordframe.h b/indra/llmath/llcoordframe.h
index aaa701f792..458f6132c9 100644
--- a/indra/llmath/llcoordframe.h
+++ b/indra/llmath/llcoordframe.h
@@ -61,7 +61,7 @@ public:
//LLCoordFrame(const F32 *origin, const F32 *rotation); // Assumes "origin" is 1x3 and "rotation" is 1x9 array
//LLCoordFrame(const F32 *origin_and_rotation); // Assumes "origin_and_rotation" is 1x12 array
- bool isFinite() { return mOrigin.isFinite() && mXAxis.isFinite() && mYAxis.isFinite() && mZAxis.isFinite(); }
+ bool isFinite() const { return mOrigin.isFinite() && mXAxis.isFinite() && mYAxis.isFinite() && mZAxis.isFinite(); }
void reset();
void resetAxes();