BodyTetrisWrapper.ImageUtils.RotateImage90s C# (CSharp) Method

RotateImage90s() public static method

public static RotateImage90s ( byte pixels, int w, int h, int rotation ) : byte[]
pixels byte
w int
h int
rotation int
return byte[]
        public static byte[] RotateImage90s(byte[] pixels, int w, int h, int rotation)
        {
            return RotateImage(pixels, w, h, rotation / 90);
        }