Short and long slerp
Short and long SLERP interpolation
Computes the slerp interpolated path between two quaternions p0 and p1. Because any rotation can be represented by a quaternion p or its opposite -p, the rotation path between two quaternions may be the 'long way' or the 'short way'. This function allows to compute one or the other. If not specified, the short way is computed. Slerp interpolation guarantees a constant angular velocity rotation from the start quaternion to the end. If quaternions are too close to each other (almost parallel), linear interpolation is used instead.
A demo is included that compares a simple rotation path computed with slerp, going the short way or the long way
For more information about short vs long slerp: https://en.wikipedia.org/wiki/Slerp (Quaternion Slerp section)
Inputs
- p0 - 1x4 double representing quaternion starting point
- p1 - 1x4 double representing quaternion end point
- t - 1xN double representing parameter t, interpolation coefficient from 0 to 1 (inclusive). At t=0, p_interp = p0_unit; at t=1, p_interp=p1_unit;
- path_str - [OPTIONAL, default = 'short'] a string, either 'short' or 'long', indicating whether we want to compute the slerp path the 'short way' or the 'long way'. If not specified, the short way is computed.
- DOT_THRESHOLD - [OPTIONAL, default = 0.9995]. If the absolute value of the dot product between p0 and p1 is above this threshold, the quaternions are considered almost parallel and a linear interpolation is computed instead
Outputs
- p_interp - Nx4 double, each row representing a normalised quaternion in the interpolated path. Start and end points are included: p_interp(1,:) = p0_unit; p_interp(end,:) = p1_unit;
引用格式
Sofía Miñano (2024). Short and long slerp (https://github.com/sfmig/short-and-long-slerp/releases/tag/v1.0.1), GitHub. 检索时间: .
MATLAB 版本兼容性
平台兼容性
Windows macOS Linux标签
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!版本 | 已发布 | 发行说明 | |
---|---|---|---|
1.0.1 | See release notes for this release on GitHub: https://github.com/sfmig/short-and-long-slerp/releases/tag/v1.0.1 |
||
1.0.0 |