BodyTetrisWrapper.ImageUtils.RotateImage90s C# (CSharp) Метод

RotateImage90s() публичный статический Метод

public static RotateImage90s ( byte pixels, int w, int h, int rotation ) : byte[]
pixels byte
w int
h int
rotation int
Результат byte[]
        public static byte[] RotateImage90s(byte[] pixels, int w, int h, int rotation)
        {
            return RotateImage(pixels, w, h, rotation / 90);
        }