Class: Harfbuzz::GlyphPosition

Inherits:
FFI::Struct
  • Object
show all
Defined in:
lib/harfbuzz/buffer.rb

Instance Method Summary collapse

Instance Method Details

#inspectObject



27
28
29
30
31
32
33
# File 'lib/harfbuzz/buffer.rb', line 27

def inspect
  "<#{self} %s>" % [
    %w{x_advance y_advance x_offset y_offset}.map { |k|
      "#{k} = #{self[k.to_sym].inspect}"
    }.join(', ')
  ]
end