/// <summary>
 /// Moves the right.
 /// </summary>
 /// <param name="shapeModel">The shape model.</param>
 public static void MoveRight(this ShapeModel shapeModel)
 {
     shapeModel.RemoveColumnRight();
     shapeModel.AddColumnLeft();
 }