Class: Dvi::Tfm::Ligature

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(a, b, c, index) ⇒ Ligature

Returns a new instance of Ligature.



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

def initialize(a, b, c, index)
  @a = a
  @b = b
  @c = c
  @index = index
end

Instance Attribute Details

#aObject (readonly)

Returns the value of attribute a.



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

def a
  @a
end

#bObject (readonly)

Returns the value of attribute b.



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

def b
  @b
end

#cObject (readonly)

Returns the value of attribute c.



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

def c
  @c
end

#indexObject (readonly)

Returns the value of attribute index.



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

def index
  @index
end