Class Origami::Graphics::DashPattern
In: sources/parser/graphics/path.rb
Parent: Object

Methods

eql?   new  

Attributes

array  [RW] 
phase  [RW] 

Public Class methods

[Source]

    # File sources/parser/graphics/path.rb, line 45
45:       def initialize(array, phase = 0)
46:         @array = array
47:         @phase = phase
48:       end

Public Instance methods

[Source]

    # File sources/parser/graphics/path.rb, line 50
50:       def eql?(dash) #:nodoc
51:         dash.array == @array and dash.phase == @phase
52:       end

[Validate]