diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2021-09-17 19:38:36 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-17 19:38:36 +0200 |
commit | 220b69ab564566ca00c8263b629e3d3d3cc64eb5 (patch) | |
tree | e14f4e0c715294ecac8162d88ccde4e06671faad /core/math/vector3.h | |
parent | 7762e8b1c1fbabc69769e8df9d6aa2443d309892 (diff) | |
parent | bf0213470cbfa63bbcce9f614f2cc2ecaae5fe54 (diff) |
Merge pull request #52450 from aaronfranke/they-came-from-scale
Replace Vector3.to_diagonal_matrix with Basis.from_scale
Diffstat (limited to 'core/math/vector3.h')
-rw-r--r-- | core/math/vector3.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/core/math/vector3.h b/core/math/vector3.h index 6a4c42f41b..e65ac31c02 100644 --- a/core/math/vector3.h +++ b/core/math/vector3.h @@ -106,7 +106,6 @@ struct Vector3 { _FORCE_INLINE_ Vector3 cross(const Vector3 &p_b) const; _FORCE_INLINE_ real_t dot(const Vector3 &p_b) const; Basis outer(const Vector3 &p_b) const; - Basis to_diagonal_matrix() const; _FORCE_INLINE_ Vector3 abs() const; _FORCE_INLINE_ Vector3 floor() const; |