コード例 #1
0
 public bool TrySolveStep(IHistoryFrame historyFrame)
 {
     foreach (var lineProcessor in _lineProcessors)
     {
         if (!lineProcessor.TryProcess(_allPoints, Groups, historyFrame))
         {
             return(false);
         }
     }
     return(true);
 }
コード例 #2
0
 public bool TryProcess(Point[] points, Group[] groups, IHistoryFrame historyFrame = null)
 {
     _historyFrame = historyFrame;
     return(TryProcessInternal(points, groups));
 }