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