class Harfbuzz::GlyphExtents

Public Instance Methods

height() click to toggle source
# File lib/harfbuzz/font.rb, line 28
def height
  self[:height]
end
inspect() click to toggle source
# File lib/harfbuzz/font.rb, line 12
def inspect
  "<#{self.class}: x_bearing = #{x_bearing}, y_bearing = #{y_bearing}, width = #{width}, height = #{height}>"
end
width() click to toggle source
# File lib/harfbuzz/font.rb, line 24
def width
  self[:width]
end
x_bearing() click to toggle source
# File lib/harfbuzz/font.rb, line 16
def x_bearing
  self[:x_bearing]
end
y_bearing() click to toggle source
# File lib/harfbuzz/font.rb, line 20
def y_bearing
  self[:y_bearing]
end