class HexaPDF::Content::Operator::SetWordSpacing

See: PDF2.0 s9.3.1
Implementation of the ‘Tw’ operator.

def initialize

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

def invoke(processor, word_space) #:nodoc:

:nodoc:
def invoke(processor, word_space) #:nodoc:
  processor.graphics_state.word_spacing = word_space
end