Class: CooCoo::Image::Transform

Inherits:
Object
  • Object
show all
Defined in:
lib/coo-coo/image.rb

Direct Known Subclasses

Clipper, Rotate, Scale, TransformChain, Translate

Instance Method Summary collapse

Instance Method Details

#*(other) ⇒ Object



142
143
144
# File 'lib/coo-coo/image.rb', line 142

def *(other)
  TransformChain.new(self, other)
end

#call(x, y) ⇒ Object



138
139
140
# File 'lib/coo-coo/image.rb', line 138

def call(x, y)
  [ x, y ]
end