Method: CooCoo::Image::TransformChain#call

Defined in:
lib/coo-coo/image.rb

#call(x, y) ⇒ Object



153
154
155
156
157
158
# File 'lib/coo-coo/image.rb', line 153

def call(x, y)
  p = @second.call(x, y)
  p2 = @first.call(*p)
  #puts("#{self.inspect} #{x} #{y} -> #{p} -> #{p2}")
  p2
end