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

Methods

new   update_state  

Included Modules

PDF::Instruction

Public Class methods

[Source]

     # File sources/parser/graphics/path.rb, line 108
108:         def initialize(array, phase); super('d', array, phase) end

Public Instance methods

[Source]

     # File sources/parser/graphics/path.rb, line 110
110:         def update_state(gs)
111:           gs.dash_pattern = DashPattern.new(@operands[0], @operands[1])
112:           self
113:         end

[Validate]