Skip to contents

Quaternion Nlerp

Usage

quaternion_nlerp(q1, q2, amount)

Arguments

q1

A numeric vector of length 4.

q2

A numeric vector of length 4.

amount

A number.

Value

A numeric vector of length 4

Examples

quaternion_nlerp(c(0, 0, 0, 1), c(0, 0, 0, 1), 0.0)
#> x y z w 
#> 0 0 0 1