PathMatchingCriterion

Description

Methods of classifying path as a member of group.

Values of this enumeration:

  • Intersection - Path has to have at least one common point with region being processed to be grouped.
  • Inclusion - Path has to be fully included in region to be grouped.

namespace PathMatchingCriterion
{
	enum Type
	{
		Intersection,
		Inclusion
	};
}