class Magick::RVG::Transforms

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

def deep_copy(h=nil)

:nodoc:
During unit-testing it also has a deep_equal method.
Transforms is an Array with a deep_copy method.
def deep_copy(h=nil)
    copy = self.class.new
    each { |transform| copy << [transform[0], transform[1].dup] }
    copy
end