/// <summary>
 /// Moves the left.
 /// </summary>
 /// <param name="shapeModel">The shape model.</param>
 public static void MoveLeft(this ShapeModel shapeModel)
 {
     shapeModel.RemoveColumnLeft();
     shapeModel.AddColumnRight();
 }