Merge pull request #98768 from Repiteo/core/constexpr-math-operators

Core: Add `constexpr` constructors/operators to math structs
This commit is contained in:
Thaddeus Crews 2025-03-17 16:03:20 -05:00
commit 1f6426066e
No known key found for this signature in database
GPG key ID: 62181B86FE9E5D84
56 changed files with 1109 additions and 1159 deletions

View file

@ -208,7 +208,6 @@ Vector<float> Collada::AnimationTrack::get_value_at_time(float p_time) const {
Vector<float> ret;
ret.resize(16);
Transform3D tr;
// i wonder why collada matrices are transposed, given that's opposed to opengl..
ret.write[0] = interp.basis.rows[0][0];
ret.write[1] = interp.basis.rows[0][1];