translateByVector4 method

void translateByVector4(
  1. Vector4 v4
)

Translate this matrix by a Vector4.

Implementation

@pragma('wasm:prefer-inline')
@pragma('vm:prefer-inline')
@pragma('dart2js:prefer-inline')
void translateByVector4(Vector4 v4) =>
    translateByDouble(v4.x, v4.y, v4.z, v4.w);