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
Source
# File lib/rvg/transformable.rb, line 13 def deep_copy(_h = nil) copy = self.class.new each { |transform| copy << [transform[0], transform[1].dup] } copy end