RectangleOrientation

Description

Describes how to adjust rectangle's orientation.

Values of this enumeration:

  • Horizontal - Rectangle's width will be not shorter than its height.
  • Vertical - Rectangle's height will be not shorter than its width.
  • Any - Depending on other parameters will minimize one of marked corner coordinates.

namespace RectangleOrientation
{
	enum Type
	{
		Horizontal,
		Vertical,
		Any
	};
}