class HexaPDF::Content::Operator::SetLineCapStyle

See: PDF2.0 s8.4.4
Implementation of the ā€˜J’ operator.

def initialize

Creates the operator.
def initialize
  super('J')
end

def invoke(processor, cap_style) #:nodoc:

:nodoc:
def invoke(processor, cap_style) #:nodoc:
  processor.graphics_state.line_cap_style = LineCapStyle.normalize(cap_style)
end