tweenTo method

Matrix4Tween tweenTo(
  1. Matrix4 end
)

Create an Matrix4Tween form this value to the provided end value

Implementation

Matrix4Tween tweenTo(Matrix4 end) {
  return Matrix4Tween(begin: this, end: end);
}