public OutputMatrix(int scale, sPixel[] output, int outWidth)
 {
     this._n        = (scale - 2) * (_MAX_ROTS * _MAX_SCALE_SQUARED);
     this._output   = new ImagePointer(output);
     this._outWidth = outWidth;
 }
Beispiel #2
0
 public OutputMatrix(int scale, sPixel[] output, int outWidth) {
   this._n = (scale - 2) * (_MAX_ROTS * _MAX_SCALE_SQUARED);
   this._output = new ImagePointer(output);
   this._outWidth = outWidth;
 }
 private static void _AlphaBlend(int n, int m, ImagePointer dstPtr, sPixel col)
 {
     dstPtr.SetPixel(sPixel.Interpolate(col, dstPtr.GetPixel(), n, m - n));
 }
Beispiel #4
0
 private static void _AlphaBlend(int n, int m, ImagePointer dstPtr, sPixel col) {
   dstPtr.SetPixel(sPixel.Interpolate(col, dstPtr.GetPixel(), n, m - n));
 }