Example #1
0
 public SpeedControl(ISnapshotTuner tuner)
 {
     this.tuner        = tuner;
     tuner.TunableTool = this;
     tuner.SetSnapshotProperties(nameof(TargetDelay));
 }
Example #2
0
 public ColorFiltering(ISnapshotTuner tuner)
 {
     this.tuner        = tuner;
     tuner.TunableTool = this;
     tuner.SetSnapshotProperties(nameof(TargetColor));
 }
Example #3
0
 public HSLFiltering(ISnapshotTuner tuner)
 {
     this.tuner        = tuner;
     tuner.TunableTool = this;
     tuner.SetSnapshotProperties(nameof(Hue), nameof(Saturation), nameof(Lightness));
 }