Quat:normalize

Edit

Adjusts the values in the quaternion so that its length becomes 1.

self = Quat:normalize()

Arguments

None

Returns

NameTypeDescription
selfQuat The normalized quaternion.

Notes

A common source of bugs with quaternions is to forget to normalize them after performing a series of operations on them. Try normalizing a quaternion if some of the calculations aren't working quite right!

See also