FSO.Files.Formats.IFF.Chunks.SPR2Frame.GetPixel C# (CSharp) Метод

GetPixel() публичный Метод

Gets a pixel from this SPR2Frame.
public GetPixel ( int x, int y ) : Color
x int X position of pixel.
y int Y position of pixel.
Результат Color
        public Color GetPixel(int x, int y)
        {
            return PixelData[(y * Width) + x];
        }