Method: HexaPDF::Content::LineDashPattern#==
- Defined in:
- lib/hexapdf/content/graphics_state.rb
#==(other) ⇒ Object
Returns true if the other line dash pattern is the same as this one.
263 264 265 |
# File 'lib/hexapdf/content/graphics_state.rb', line 263 def ==(other) other.kind_of?(self.class) && other.array == array && other.phase == phase end |