TurnAngleDirection

Description

Decides which turns are important in operation being performed.

Values of this enumeration:

  • Left - Only left turns are considered.
  • Right - Only right turns are considered.
  • All - Both turns are considered.

namespace TurnAngleDirection
{
	enum Type
	{
		Left,
		Right,
		All
	};
}