Class Origami::Graphics::Instruction::JJoin
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 138
138:         def initialize(join); super('j', join) end

Public Instance methods

[Source]

     # File sources/parser/graphics/path.rb, line 140
140:         def update_state(gs)
141:           gs.line_join = @operands[0]
142:           self
143:         end

[Validate]