1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
use na::{Unit, UnitQuaternion};

use crate::aliases::{Qua, TVec3};
use crate::RealNumber;

/// Computes the quaternion exponential.
pub fn quat_exp<T: RealNumber>(q: &Qua<T>) -> Qua<T> {
    q.exp()
}

/// Computes the quaternion logarithm.
pub fn quat_log<T: RealNumber>(q: &Qua<T>) -> Qua<T> {
    q.ln()
}

/// Raises the quaternion `q` to the power `y`.
pub fn quat_pow<T: RealNumber>(q: &Qua<T>, y: T) -> Qua<T> {
    q.powf(y)
}

/// Builds a quaternion from an axis and an angle, and right-multiply it to the quaternion `q`.
pub fn quat_rotate<T: RealNumber>(q: &Qua<T>, angle: T, axis: &TVec3<T>) -> Qua<T> {
    q * UnitQuaternion::from_axis_angle(&Unit::new_normalize(*axis), angle).into_inner()
}

//pub fn quat_sqrt<T: RealNumber>(q: &Qua<T>) -> Qua<T> {
//    unimplemented!()
//}