translateByVector2 method

void translateByVector2(
  1. Vector2 v2
)

Translate this matrix by a Vector2.

Implementation

@pragma('wasm:prefer-inline')
@pragma('vm:prefer-inline')
@pragma('dart2js:prefer-inline')
void translateByVector2(Vector2 v2) =>
    translateByDouble(v2.x, v2.y, 0.0, 1.0);