コード例 #1
0
ファイル: SpeedControl.cs プロジェクト: itdimk/AMAGE
 public SpeedControl(ISnapshotTuner tuner)
 {
     this.tuner        = tuner;
     tuner.TunableTool = this;
     tuner.SetSnapshotProperties(nameof(TargetDelay));
 }
コード例 #2
0
ファイル: ColorFiltering.cs プロジェクト: itdimk/AMAGE
 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));
 }