Class: ImageVoodoo::BufferedImage

Inherits:
Object
  • Object
show all
Defined in:
lib/image_voodoo/awt/core_ext/buffered_image.rb

Overview

Re-open to add convenience methods.

Instance Method Summary collapse

Instance Method Details

#eachObject



11
12
13
# File 'lib/image_voodoo/awt/core_ext/buffered_image.rb', line 11

def each
  height.times { |j| width.times { |i| yield i, j } }
end