chore: sync workspace state

This commit is contained in:
2026-03-29 01:36:53 +08:00
parent eb5de3e3d4
commit e5cb79f3ce
4935 changed files with 35593 additions and 360696 deletions

View File

@@ -161,7 +161,7 @@ Vector3 Quaternion::ToEulerAngles() const {
float cosyCosp = 1.0f - 2.0f * (y * y + z * z);
float yaw = std::atan2(sinyCosp, cosyCosp);
return Vector3(pitch, yaw, roll);
return Vector3(roll, pitch, yaw);
}
Matrix4 Quaternion::ToMatrix4x4() const {