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