module ChunkyPNG::Canvas::Drawing

def point(x, y, color)

Sets a point on the canvas by composing a pixel with its background color.
def point(x, y, color)
  self[x, y] = ChunkyPNG::Color.compose(color, self[x, y])
end