private static Matrix4d flipZ() {
   Matrix4d rot = new Matrix4d();
   rot.m00 = -1;
   rot.m11 = -1;
   rot.m22 = 1;
   rot.m33 = 1;
   return rot;
 }