nuclear@1: /* nuclear@1: libvmath - a vector math library nuclear@1: Copyright (C) 2004-2011 John Tsiombikas nuclear@1: nuclear@1: This program is free software: you can redistribute it and/or modify nuclear@1: it under the terms of the GNU Lesser General Public License as published nuclear@1: by the Free Software Foundation, either version 3 of the License, or nuclear@1: (at your option) any later version. nuclear@1: nuclear@1: This program is distributed in the hope that it will be useful, nuclear@1: but WITHOUT ANY WARRANTY; without even the implied warranty of nuclear@1: MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the nuclear@1: GNU Lesser General Public License for more details. nuclear@1: nuclear@1: You should have received a copy of the GNU Lesser General Public License nuclear@1: along with this program. If not, see . nuclear@1: */ nuclear@1: nuclear@1: nuclear@1: #include nuclear@1: #include nuclear@1: #include "quat.h" nuclear@1: nuclear@1: void quat_print(FILE *fp, quat_t q) nuclear@1: { nuclear@1: fprintf(fp, "([ %.4f %.4f %.4f ] %.4f)", q.x, q.y, q.z, q.w); nuclear@1: } nuclear@1: nuclear@1: quat_t quat_rotate(quat_t q, scalar_t angle, scalar_t x, scalar_t y, scalar_t z) nuclear@1: { nuclear@1: quat_t rq; nuclear@1: scalar_t half_angle = angle * 0.5; nuclear@1: scalar_t sin_half = sin(half_angle); nuclear@1: nuclear@1: rq.w = cos(half_angle); nuclear@1: rq.x = x * sin_half; nuclear@1: rq.y = y * sin_half; nuclear@1: rq.z = z * sin_half; nuclear@1: nuclear@1: return quat_mul(q, rq); nuclear@1: } nuclear@1: nuclear@1: quat_t quat_rotate_quat(quat_t q, quat_t rotq) nuclear@1: { nuclear@1: return quat_mul(quat_mul(rotq, q), quat_conjugate(rotq)); nuclear@1: } nuclear@1: nuclear@1: quat_t quat_slerp(quat_t q1, quat_t q2, scalar_t t) nuclear@1: { nuclear@1: quat_t res; nuclear@1: scalar_t a, b, angle, sin_angle, dot; nuclear@1: nuclear@1: dot = q1.w * q2.w + q1.x * q2.x + q1.y * q2.y + q1.z * q2.z; nuclear@1: if(dot < 0.0) { nuclear@1: /* make sure we interpolate across the shortest arc */ nuclear@1: q1.x = -q1.x; nuclear@1: q1.y = -q1.y; nuclear@1: q1.z = -q1.z; nuclear@1: q1.w = -q1.w; nuclear@1: dot = -dot; nuclear@1: } nuclear@1: nuclear@1: /* clamp dot to [-1, 1] in order to avoid domain errors in acos due to nuclear@1: * floating point imprecisions nuclear@1: */ nuclear@1: if(dot < -1.0) dot = -1.0; nuclear@1: if(dot > 1.0) dot = 1.0; nuclear@1: nuclear@1: angle = acos(dot); nuclear@1: sin_angle = sin(angle); nuclear@1: nuclear@1: if(fabs(sin_angle) < SMALL_NUMBER) { nuclear@1: /* for very small angles or completely opposite orientations nuclear@1: * use linear interpolation to avoid div/zero (in the first case it makes sense, nuclear@1: * the second case is pretty much undefined anyway I guess ... nuclear@1: */ nuclear@1: a = 1.0f - t; nuclear@1: b = t; nuclear@1: } else { nuclear@1: a = sin((1.0f - t) * angle) / sin_angle; nuclear@1: b = sin(t * angle) / sin_angle; nuclear@1: } nuclear@1: nuclear@1: res.x = q1.x * a + q2.x * b; nuclear@1: res.y = q1.y * a + q2.y * b; nuclear@1: res.z = q1.z * a + q2.z * b; nuclear@1: res.w = q1.w * a + q2.w * b; nuclear@1: return res; nuclear@1: }