public TransformFilter(string name, ITransformAlgorithm <TParameters> transformer) : base(name)
 {
     this.transformer = transformer;
 }
Exemple #2
0
 public static void ApplyTransform(this Bitmap bmp, ITransformAlgorithm algorithm)
 {
     algorithm.Transform(bmp);
 }