| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | /*************************************************************************/ | 
					
						
							|  |  |  | /*  quat.h                                                               */ | 
					
						
							|  |  |  | /*************************************************************************/ | 
					
						
							|  |  |  | /*                       This file is part of:                           */ | 
					
						
							|  |  |  | /*                           GODOT ENGINE                                */ | 
					
						
							| 
									
										
										
										
											2017-08-27 14:16:55 +02:00
										 |  |  | /*                      https://godotengine.org                          */ | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | /*************************************************************************/ | 
					
						
							| 
									
										
										
										
											2020-01-01 11:16:22 +01:00
										 |  |  | /* Copyright (c) 2007-2020 Juan Linietsky, Ariel Manzur.                 */ | 
					
						
							|  |  |  | /* Copyright (c) 2014-2020 Godot Engine contributors (cf. AUTHORS.md).   */ | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | /*                                                                       */ | 
					
						
							|  |  |  | /* Permission is hereby granted, free of charge, to any person obtaining */ | 
					
						
							|  |  |  | /* a copy of this software and associated documentation files (the       */ | 
					
						
							|  |  |  | /* "Software"), to deal in the Software without restriction, including   */ | 
					
						
							|  |  |  | /* without limitation the rights to use, copy, modify, merge, publish,   */ | 
					
						
							|  |  |  | /* distribute, sublicense, and/or sell copies of the Software, and to    */ | 
					
						
							|  |  |  | /* permit persons to whom the Software is furnished to do so, subject to */ | 
					
						
							|  |  |  | /* the following conditions:                                             */ | 
					
						
							|  |  |  | /*                                                                       */ | 
					
						
							|  |  |  | /* The above copyright notice and this permission notice shall be        */ | 
					
						
							|  |  |  | /* included in all copies or substantial portions of the Software.       */ | 
					
						
							|  |  |  | /*                                                                       */ | 
					
						
							|  |  |  | /* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,       */ | 
					
						
							|  |  |  | /* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF    */ | 
					
						
							|  |  |  | /* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.*/ | 
					
						
							|  |  |  | /* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY  */ | 
					
						
							|  |  |  | /* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,  */ | 
					
						
							|  |  |  | /* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE     */ | 
					
						
							|  |  |  | /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.                */ | 
					
						
							|  |  |  | /*************************************************************************/ | 
					
						
							| 
									
										
										
										
											2016-12-31 14:39:25 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-09-11 18:13:45 +02:00
										 |  |  | // Circular dependency between Vector3 and Basis :/
 | 
					
						
							|  |  |  | #include "core/math/vector3.h"
 | 
					
						
							| 
									
										
										
										
											2016-12-31 14:39:25 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | #ifndef QUAT_H
 | 
					
						
							|  |  |  | #define QUAT_H
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-09-11 18:13:45 +02:00
										 |  |  | #include "core/math/math_defs.h"
 | 
					
						
							|  |  |  | #include "core/math/math_funcs.h"
 | 
					
						
							|  |  |  | #include "core/ustring.h"
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | class Quat { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | public: | 
					
						
							| 
									
										
										
										
											2020-11-06 22:29:22 -03:00
										 |  |  | 	union { | 
					
						
							|  |  |  | 		struct { | 
					
						
							|  |  |  | 			real_t x; | 
					
						
							|  |  |  | 			real_t y; | 
					
						
							|  |  |  | 			real_t z; | 
					
						
							|  |  |  | 			real_t w; | 
					
						
							|  |  |  | 		}; | 
					
						
							|  |  |  | 		real_t components[4] = { 0, 0, 0, 1.0 }; | 
					
						
							|  |  |  | 	}; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-11-06 22:29:22 -03:00
										 |  |  | 	_FORCE_INLINE_ real_t &operator[](int idx) { | 
					
						
							|  |  |  | 		return components[idx]; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	_FORCE_INLINE_ const real_t &operator[](int idx) const { | 
					
						
							|  |  |  | 		return components[idx]; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	_FORCE_INLINE_ real_t length_squared() const; | 
					
						
							| 
									
										
										
										
											2019-10-14 16:33:45 -04:00
										 |  |  | 	bool is_equal_approx(const Quat &p_quat) const; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	real_t length() const; | 
					
						
							|  |  |  | 	void normalize(); | 
					
						
							|  |  |  | 	Quat normalized() const; | 
					
						
							| 
									
										
										
										
											2017-04-05 17:47:13 -05:00
										 |  |  | 	bool is_normalized() const; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	Quat inverse() const; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	_FORCE_INLINE_ real_t dot(const Quat &q) const; | 
					
						
							| 
									
										
										
										
											2017-08-08 22:55:52 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	void set_euler_xyz(const Vector3 &p_euler); | 
					
						
							|  |  |  | 	Vector3 get_euler_xyz() const; | 
					
						
							|  |  |  | 	void set_euler_yxz(const Vector3 &p_euler); | 
					
						
							|  |  |  | 	Vector3 get_euler_yxz() const; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	void set_euler(const Vector3 &p_euler) { set_euler_yxz(p_euler); }; | 
					
						
							|  |  |  | 	Vector3 get_euler() const { return get_euler_yxz(); }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	Quat slerp(const Quat &q, const real_t &t) const; | 
					
						
							|  |  |  | 	Quat slerpni(const Quat &q, const real_t &t) const; | 
					
						
							|  |  |  | 	Quat cubic_slerp(const Quat &q, const Quat &prep, const Quat &postq, const real_t &t) const; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-05-11 20:14:39 -04:00
										 |  |  | 	void set_axis_angle(const Vector3 &axis, const real_t &angle); | 
					
						
							| 
									
										
										
										
											2017-04-05 17:47:13 -05:00
										 |  |  | 	_FORCE_INLINE_ void get_axis_angle(Vector3 &r_axis, real_t &r_angle) const { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		r_angle = 2 * Math::acos(w); | 
					
						
							| 
									
										
										
										
											2018-05-11 20:14:39 -04:00
										 |  |  | 		real_t r = ((real_t)1) / Math::sqrt(1 - w * w); | 
					
						
							|  |  |  | 		r_axis.x = x * r; | 
					
						
							|  |  |  | 		r_axis.y = y * r; | 
					
						
							|  |  |  | 		r_axis.z = z * r; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	void operator*=(const Quat &q); | 
					
						
							|  |  |  | 	Quat operator*(const Quat &q) const; | 
					
						
							| 
									
										
										
										
											2014-09-15 11:33:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	Quat operator*(const Vector3 &v) const { | 
					
						
							|  |  |  | 		return Quat(w * v.x + y * v.z - z * v.y, | 
					
						
							|  |  |  | 				w * v.y + z * v.x - x * v.z, | 
					
						
							|  |  |  | 				w * v.z + x * v.y - y * v.x, | 
					
						
							|  |  |  | 				-x * v.x - y * v.y - z * v.z); | 
					
						
							| 
									
										
										
										
											2014-09-15 11:33:30 -03:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	_FORCE_INLINE_ Vector3 xform(const Vector3 &v) const { | 
					
						
							| 
									
										
										
										
											2018-05-26 23:14:05 -04:00
										 |  |  | #ifdef MATH_CHECKS
 | 
					
						
							| 
									
										
										
										
											2020-01-24 13:51:25 +01:00
										 |  |  | 		ERR_FAIL_COND_V_MSG(!is_normalized(), v, "The quaternion must be normalized."); | 
					
						
							| 
									
										
										
										
											2018-05-26 23:14:05 -04:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2018-05-11 20:14:39 -04:00
										 |  |  | 		Vector3 u(x, y, z); | 
					
						
							|  |  |  | 		Vector3 uv = u.cross(v); | 
					
						
							|  |  |  | 		return v + ((uv * w) + u.cross(uv)) * ((real_t)2); | 
					
						
							| 
									
										
										
										
											2014-09-15 11:33:30 -03:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-11-04 23:01:55 -03:00
										 |  |  | 	_FORCE_INLINE_ Vector3 xform_inv(const Vector3 &v) const { | 
					
						
							|  |  |  | 		return inverse().xform(v); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	_FORCE_INLINE_ void operator+=(const Quat &q); | 
					
						
							|  |  |  | 	_FORCE_INLINE_ void operator-=(const Quat &q); | 
					
						
							|  |  |  | 	_FORCE_INLINE_ void operator*=(const real_t &s); | 
					
						
							|  |  |  | 	_FORCE_INLINE_ void operator/=(const real_t &s); | 
					
						
							|  |  |  | 	_FORCE_INLINE_ Quat operator+(const Quat &q2) const; | 
					
						
							|  |  |  | 	_FORCE_INLINE_ Quat operator-(const Quat &q2) const; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	_FORCE_INLINE_ Quat operator-() const; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	_FORCE_INLINE_ Quat operator*(const real_t &s) const; | 
					
						
							|  |  |  | 	_FORCE_INLINE_ Quat operator/(const real_t &s) const; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	_FORCE_INLINE_ bool operator==(const Quat &p_quat) const; | 
					
						
							|  |  |  | 	_FORCE_INLINE_ bool operator!=(const Quat &p_quat) const; | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	operator String() const; | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	inline void set(real_t p_x, real_t p_y, real_t p_z, real_t p_w) { | 
					
						
							|  |  |  | 		x = p_x; | 
					
						
							|  |  |  | 		y = p_y; | 
					
						
							|  |  |  | 		z = p_z; | 
					
						
							|  |  |  | 		w = p_w; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2020-05-12 17:01:17 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	_FORCE_INLINE_ Quat() {} | 
					
						
							|  |  |  | 	_FORCE_INLINE_ Quat(real_t p_x, real_t p_y, real_t p_z, real_t p_w) : | 
					
						
							| 
									
										
										
										
											2018-12-08 15:07:33 -05:00
										 |  |  | 			x(p_x), | 
					
						
							|  |  |  | 			y(p_y), | 
					
						
							|  |  |  | 			z(p_z), | 
					
						
							|  |  |  | 			w(p_w) { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2018-05-11 20:14:39 -04:00
										 |  |  | 	Quat(const Vector3 &axis, const real_t &angle) { set_axis_angle(axis, angle); } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	Quat(const Vector3 &euler) { set_euler(euler); } | 
					
						
							| 
									
										
										
										
											2018-12-08 15:07:33 -05:00
										 |  |  | 	Quat(const Quat &q) : | 
					
						
							|  |  |  | 			x(q.x), | 
					
						
							|  |  |  | 			y(q.y), | 
					
						
							|  |  |  | 			z(q.z), | 
					
						
							|  |  |  | 			w(q.w) { | 
					
						
							| 
									
										
										
										
											2018-05-11 20:14:39 -04:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-09-15 11:33:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-09-04 09:18:19 +01:00
										 |  |  | 	Quat &operator=(const Quat &q) { | 
					
						
							| 
									
										
										
										
											2019-03-02 13:32:29 +01:00
										 |  |  | 		x = q.x; | 
					
						
							|  |  |  | 		y = q.y; | 
					
						
							|  |  |  | 		z = q.z; | 
					
						
							|  |  |  | 		w = q.w; | 
					
						
							|  |  |  | 		return *this; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	Quat(const Vector3 &v0, const Vector3 &v1) // shortest arc
 | 
					
						
							| 
									
										
										
										
											2014-09-15 11:33:30 -03:00
										 |  |  | 	{ | 
					
						
							|  |  |  | 		Vector3 c = v0.cross(v1); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		real_t d = v0.dot(v1); | 
					
						
							| 
									
										
										
										
											2014-09-15 11:33:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		if (d < -1.0 + CMP_EPSILON) { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			x = 0; | 
					
						
							|  |  |  | 			y = 1; | 
					
						
							|  |  |  | 			z = 0; | 
					
						
							|  |  |  | 			w = 0; | 
					
						
							| 
									
										
										
										
											2014-09-15 11:33:30 -03:00
										 |  |  | 		} else { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			real_t s = Math::sqrt((1.0 + d) * 2.0); | 
					
						
							| 
									
										
										
										
											2017-01-14 14:35:39 -06:00
										 |  |  | 			real_t rs = 1.0 / s; | 
					
						
							| 
									
										
										
										
											2014-09-15 11:33:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			x = c.x * rs; | 
					
						
							|  |  |  | 			y = c.y * rs; | 
					
						
							|  |  |  | 			z = c.z * rs; | 
					
						
							|  |  |  | 			w = s * 0.5; | 
					
						
							| 
									
										
										
										
											2014-09-15 11:33:30 -03:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | real_t Quat::dot(const Quat &q) const { | 
					
						
							|  |  |  | 	return x * q.x + y * q.y + z * q.z + w * q.w; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | real_t Quat::length_squared() const { | 
					
						
							|  |  |  | 	return dot(*this); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | void Quat::operator+=(const Quat &q) { | 
					
						
							|  |  |  | 	x += q.x; | 
					
						
							|  |  |  | 	y += q.y; | 
					
						
							|  |  |  | 	z += q.z; | 
					
						
							|  |  |  | 	w += q.w; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | void Quat::operator-=(const Quat &q) { | 
					
						
							|  |  |  | 	x -= q.x; | 
					
						
							|  |  |  | 	y -= q.y; | 
					
						
							|  |  |  | 	z -= q.z; | 
					
						
							|  |  |  | 	w -= q.w; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | void Quat::operator*=(const real_t &s) { | 
					
						
							|  |  |  | 	x *= s; | 
					
						
							|  |  |  | 	y *= s; | 
					
						
							|  |  |  | 	z *= s; | 
					
						
							|  |  |  | 	w *= s; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | void Quat::operator/=(const real_t &s) { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	*this *= 1.0 / s; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | Quat Quat::operator+(const Quat &q2) const { | 
					
						
							|  |  |  | 	const Quat &q1 = *this; | 
					
						
							|  |  |  | 	return Quat(q1.x + q2.x, q1.y + q2.y, q1.z + q2.z, q1.w + q2.w); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | Quat Quat::operator-(const Quat &q2) const { | 
					
						
							|  |  |  | 	const Quat &q1 = *this; | 
					
						
							|  |  |  | 	return Quat(q1.x - q2.x, q1.y - q2.y, q1.z - q2.z, q1.w - q2.w); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Quat Quat::operator-() const { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	const Quat &q2 = *this; | 
					
						
							|  |  |  | 	return Quat(-q2.x, -q2.y, -q2.z, -q2.w); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | Quat Quat::operator*(const real_t &s) const { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	return Quat(x * s, y * s, z * s, w * s); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | Quat Quat::operator/(const real_t &s) const { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	return *this * (1.0 / s); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | bool Quat::operator==(const Quat &p_quat) const { | 
					
						
							|  |  |  | 	return x == p_quat.x && y == p_quat.y && z == p_quat.z && w == p_quat.w; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | bool Quat::operator!=(const Quat &p_quat) const { | 
					
						
							|  |  |  | 	return x != p_quat.x || y != p_quat.y || z != p_quat.z || w != p_quat.w; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-09-17 08:56:36 -03:00
										 |  |  | _FORCE_INLINE_ Quat operator*(const real_t &p_real, const Quat &p_quat) { | 
					
						
							|  |  |  | 	return p_quat * p_real; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-25 11:10:34 +01:00
										 |  |  | #endif // QUAT_H
 |