diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2023-01-19 19:32:51 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2023-01-19 19:32:51 +0100 |
commit | 4ca6a9809d54aafcb9887cec037ee1f3947fdf02 (patch) | |
tree | 52f3e5e5814217b1adbd7a2a369bf5d799482e86 /core/math/basis.h | |
parent | 8b923163686d3141addaab3931d8875beb4f91d8 (diff) | |
parent | c0083e431bb7bf66987f396cf9a62fa372d92fe9 (diff) | |
download | redot-engine-4ca6a9809d54aafcb9887cec037ee1f3947fdf02.tar.gz |
Merge pull request #44596 from KoBeWi/🧹🧹🧹
Cleanup unused engine code v2
Diffstat (limited to 'core/math/basis.h')
-rw-r--r-- | core/math/basis.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/core/math/basis.h b/core/math/basis.h index b3197dbc84..bbc1d40469 100644 --- a/core/math/basis.h +++ b/core/math/basis.h @@ -56,8 +56,6 @@ struct _NO_DISCARD_ Basis { _FORCE_INLINE_ real_t determinant() const; - void from_z(const Vector3 &p_z); - void rotate(const Vector3 &p_axis, real_t p_angle); Basis rotated(const Vector3 &p_axis, real_t p_angle) const; @@ -101,8 +99,6 @@ struct _NO_DISCARD_ Basis { void scale_orthogonal(const Vector3 &p_scale); Basis scaled_orthogonal(const Vector3 &p_scale) const; - - void make_scale_uniform(); float get_uniform_scale() const; Vector3 get_scale() const; |