mulAdd

open fun mulAdd(v: T, scalar: Float): T

Deprecated (with error)

Unlike its equivalent in libGDX, this function does not change the internal state of the vector and returns a new instance instead. This might break existing code designed with mutable vectors in mind.

Replace with

this + (v * scalar)

open fun mulAdd(v: T, mulVec: T): T

Deprecated (with error)

Unlike its equivalent in libGDX, this function does not change the internal state of the vector and returns a new instance instead. This might break existing code designed with mutable vectors in mind.

Replace with

this + (v * mulVec)