Compute a linear (non-spherical) interpolation of this and the given quaternion q and store the result in this . @param q the other quaternion @param factor the interpolation factor. It is between 0.0 and 1.0 @return this
(Quat q, double factor)
| 878 | * @param factor the interpolation factor. It is between 0.0 and 1.0 |
| 879 | * @return this |
| 880 | */ |
| 881 | public Quat nlerp(Quat q, double factor) { |
| 882 | return nlerp(q, factor, this); |
| 883 | } |
| 884 | |
| 885 | /** |