public Mat4f mul(float rhs) {
   Mat4f m = new Mat4f();
   ArrayMath.mul(arraySize(), m.e, 0, e, 0, rhs);
   return m;
 }