Interpolate between this quaternion and the specified target using sperical linear interpolation using the specified interpolation factor alpha . @param target the target of the interpolation, which should be reached with alpha = 1.0 @param alpha the
(Quat target, double alpha)
| 832 | * @param alpha the interpolation factor, within <tt>[0..1]</tt> |
| 833 | * @return this |
| 834 | */ |
| 835 | public Quat slerp(Quat target, double alpha) { |
| 836 | return slerp(target, alpha, this); |
| 837 | } |
| 838 | |
| 839 | /** |