Esempio n. 1
0
        public override Image generate(Image input)
        {
            Image ret = input;

            for (int i = 0; i < rots; i++)
            {
                ret = Semantics.Orthogonal(ret, 2);
            }
            return(ret);
        }
Esempio n. 2
0
 public override Image generate(Image input)
 {
     return(x ? Semantics.Orthogonal(input, 1) : Semantics.Orthogonal(input, 0));
 }