translateBy method

Matrix4 translateBy(
  1. double x,
  2. double y,
  3. double z
)

Applies translation to this matrix

Implementation

Matrix4 translateBy(double x, double y, double z) {
  return this * CustomMatrixUtils.translateByDouble(x, y, z);
}