class Magick::HatchFill

def initialize(bgcolor, hatchcolor = 'white', dist = 10)

def initialize(bgcolor, hatchcolor = 'white', dist = 10)
  @bgcolor = bgcolor
  @hatchpixel = hatchcolor.is_a?(Pixel) ? hatchcolor : Pixel.from_color(hatchcolor)
  @dist = dist
end