translate method

DOMMatrix translate([
  1. num tx,
  2. num ty,
  3. num tz
])

The translate() method of the DOMMatrixReadOnly interface creates a new matrix being the result of the original matrix with a translation applied.

Implementation

external DOMMatrix translate([
  num tx,
  num ty,
  num tz,
]);