Class: Dvi::Tfm::Format::LigKern

Inherits:
Object
  • Object
show all
Defined in:
lib/dvi/tfm/format.rb

Overview

LigKern is a class for lig/kern section.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(skip_byte, next_char, op_byte, remainder) ⇒ LigKern

Returns a new instance of LigKern.



23
24
25
26
27
28
# File 'lib/dvi/tfm/format.rb', line 23

def initialize(skip_byte, next_char, op_byte, remainder)
  @skip_byte = skip_byte
  @next_char = next_char
  @op_byte = op_byte
  @remainder = remainder
end

Instance Attribute Details

#next_charObject (readonly)

Returns the value of attribute next_char.



22
23
24
# File 'lib/dvi/tfm/format.rb', line 22

def next_char
  @next_char
end

#op_byteObject (readonly)

Returns the value of attribute op_byte.



22
23
24
# File 'lib/dvi/tfm/format.rb', line 22

def op_byte
  @op_byte
end

#remainderObject (readonly)

Returns the value of attribute remainder.



22
23
24
# File 'lib/dvi/tfm/format.rb', line 22

def remainder
  @remainder
end

#skip_byteObject (readonly)

Returns the value of attribute skip_byte.



22
23
24
# File 'lib/dvi/tfm/format.rb', line 22

def skip_byte
  @skip_byte
end