translateByVector2 method
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);