Skip to content

Api > Quaternion > LerpUnclamped()


Quaternion.LerpUnclamped(Quaternion a, Quaternion b, number t)⚓︎

Interpolates between a and b by t and normalizes the result afterwards. The parameter t is not clamped.

Parameters:⚓︎

Name Type Description
a Quaternion a
b Quaternion b
t number t

Returns:⚓︎

type Description
Quaternion result

Usage⚓︎

---@type Quaternion
local quaternion;

---@type Quaternion
local a;

---@type Quaternion
local b;

---@type number
local t;


local val0 = quaternion.LerpUnclamped(a, b, t)