class Magick::RVG::Transforms

Transforms is an Array with a deep_copy method. During unit-testing it also has a deep_equal method. @private

Public Instance Methods

deep_copy(_h = nil) click to toggle source
# File lib/rvg/transformable.rb, line 11
def deep_copy(_h = nil)
  copy = self.class.new
  each { |transform| copy << [transform[0], transform[1].dup] }
  copy
end