Apachai.Effects.Core.FastBitmapExtensions.GetPointAddress C# (CSharp) Метод

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

public static GetPointAddress ( this surf, int x, int y ) : PixelData*
surf this
x int
y int
Результат PixelData*
        public static unsafe PixelData* GetPointAddress(this FastBitmap surf, int x, int y)
        {
            if (x < 0 || x >= surf.Width)
                throw new ArgumentOutOfRangeException ("x", "Out of bounds: x=" + x.ToString ());

            return surf.GetPointAddressUnchecked (x, y);
        }

Same methods

FastBitmapExtensions::GetPointAddress ( this surf, Point point ) : PixelData*