We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e96d3ae + 03e660f commit 4fba82cCopy full SHA for 4fba82c
include/Vector4.hpp
@@ -130,8 +130,8 @@ class Vector4 : public ::Vector4 {
130
return ::QuaternionFromAxisAngle(axis, angle);
131
}
132
133
- static inline Vector4 FromEuler(const float yaw, const float pitch, const float roll) {
134
- return ::QuaternionFromEuler(yaw, pitch, roll);
+ static inline Vector4 FromEuler(const float pitch, const float yaw, const float roll) {
+ return ::QuaternionFromEuler(pitch, yaw, roll);
135
136
137
static inline Vector4 FromEuler(const ::Vector3& vector3) {
0 commit comments