示例#1
0
 public void Reset()
 {
     _current = _vertices[0];
     _strategy.Init(_current);
 }
示例#2
0
 public bool MoveNext()
 {
     _current = _strategy.Next();
     return(_current != null);
 }