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



9
10
11
# File 'lib/image_voodoo/awt/core_ext/buffered_image.rb', line 9

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