translateByVector3 method

void translateByVector3(
  1. Vector3 v3
)

Translate this matrix by a Vector3.

Implementation

@pragma('wasm:prefer-inline')
@pragma('vm:prefer-inline')
@pragma('dart2js:prefer-inline')
void translateByVector3(Vector3 v3) =>
    translateByDouble(v3.x, v3.y, v3.z, 1.0);