Class: Magick::RVG::Transforms
- Inherits:
-
Array
- Object
- Array
- Magick::RVG::Transforms
- Defined in:
- lib/rvg/transformable.rb
Overview
Transforms is an Array with a deep_copy method. During unit-testing it also has a deep_equal method.
Instance Method Summary collapse
-
#deep_copy(h = nil) ⇒ Object
:nodoc:.
Instance Method Details
#deep_copy(h = nil) ⇒ Object
:nodoc:
10 11 12 13 14 |
# File 'lib/rvg/transformable.rb', line 10 def deep_copy(h = nil) copy = self.class.new each { |transform| copy << [transform[0], transform[1].dup] } copy end |