Method: Pixelart::Image#compose!
- Defined in:
- lib/pixelart/image.rb
#compose!(other, x = 0, y = 0) ⇒ Object Also known as: paste!
325 326 327 |
# File 'lib/pixelart/image.rb', line 325 def compose!( other, x=0, y=0 ) @img.compose!( other.image, x, y ) ## note: "unwrap" inner image ref end |