Example #1
0
 public void RemoveFeature(Feature point)
 {
     Features.Remove(point);
     OnPropertyChanged("TotalOutputs");
 }
Example #2
0
 public void AddFeature(Feature point)
 {
     Features.Add(point);
     OnPropertyChanged("TotalOutputs");
 }