public static Transformation TranslateBy(double x, double y, double z)
 {
     Transformation result = new Transformation();
     result.SetTranslation(x, y, z);
     return result;
 }