C# Class QualityBot.Util.Iterators

Show file Open project: Ancestry/quality-bot

Public Methods

Method Description
TopDownIterator ( int minX, int minY, int maxX, int maxY, int stepX, int stepY ) : IEnumerable

Iterates through points in a top down direction starting at the upper left.

Method Details

TopDownIterator() public static method

Iterates through points in a top down direction starting at the upper left.
public static TopDownIterator ( int minX, int minY, int maxX, int maxY, int stepX, int stepY ) : IEnumerable
minX int The min x.
minY int The min y.
maxX int The max x.
maxY int The max y.
stepX int The y step.
stepY int The x step.
return IEnumerable