mul

fun mul(matrix: Matrix3): ImmutableVector2

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

import com.badlogic.gdx.math.Affine2
this * Affine2().set(matrix)