Method: Vips::Image#**
- Defined in:
- lib/vips8/image.rb
permalink #**(other) ⇒ Image
Raise to power of an image, constant or array.
772 773 774 775 |
# File 'lib/vips8/image.rb', line 772 def **(other) other.is_a?(Vips::Image) ? math2(other, :pow) : math2_const(other, :pow) end |