Ejemplo n.º 1
0
 public IEnumerable <IColorable> GetNotNullInput()
 {
     return
         (Input.Where(
              inPoint =>
              (inPoint != null) && (inPoint.GetCurrentColor() != null) && (!InvisiblePoints.Contains(inPoint))));
 }