diff options
author | Aaron Franke <arnfranke@yahoo.com> | 2024-03-29 16:44:12 -0700 |
---|---|---|
committer | Aaron Franke <arnfranke@yahoo.com> | 2024-03-29 16:44:12 -0700 |
commit | 158fcf107c669796faf63e61b74d382ab2769273 (patch) | |
tree | 27b2baedfee5643882282192a8b397e56501817d /core/math/basis.h | |
parent | 29b3d9e9e538f0aa8effc8ad8bf19a2915292a89 (diff) | |
download | redot-engine-158fcf107c669796faf63e61b74d382ab2769273.tar.gz |
Fix some uses of float and real_t in core/math
Diffstat (limited to 'core/math/basis.h')
-rw-r--r-- | core/math/basis.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/math/basis.h b/core/math/basis.h index 1fc08e95e1..79f3bda8f8 100644 --- a/core/math/basis.h +++ b/core/math/basis.h @@ -99,7 +99,7 @@ struct _NO_DISCARD_ Basis { void scale_orthogonal(const Vector3 &p_scale); Basis scaled_orthogonal(const Vector3 &p_scale) const; - float get_uniform_scale() const; + real_t get_uniform_scale() const; Vector3 get_scale() const; Vector3 get_scale_abs() const; |