Grx.fast_get_pixel_at

@accepts(int, int)
@returns(Grx.Color)
def fast_get_pixel_at(x, y):
    # Python wrapper for grx_fast_get_pixel_at()
  

Gets the color value of the pixel in the current context at the specified coordinates.

This function does not perform clipping. If you are not sure x and y are within the bounds of the current context, use Grx.get_pixel_at instead.

x

the X coordinate

y

the Y coordinate

Returns