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.
1 parent e96d3ae commit 03e660fCopy full SHA for 03e660f
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