Class Origami::Graphics::Instruction::W
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 118
118:         def initialize(width); super('w', width) end

Public Instance methods

[Source]

     # File sources/parser/graphics/path.rb, line 120
120:         def update_state(gs)
121:           gs.line_width = @operands[0]
122:           self
123:         end

[Validate]