public static RectEdit Create(RectEditType type, RectAxis axis, float amount) => new RectEdit(type, axis, amount);
 public RectEdit(RectEditType type, RectAxis axis, float amount)
 {
     Type   = type;
     Axis   = axis;
     Amount = amount;
 }