Translation matrix.
factory Matrix4.translationValues(double x, double y, double z) => Matrix4.zero() ..setIdentity() ..setTranslationRaw(x, y, z);