class TTFunk::Table::Glyf::Simple
Attributes
number_of_contours[R]
raw[R]
x_max[R]
x_min[R]
y_max[R]
y_min[R]
Public Class Methods
new(raw, number_of_contours, x_min, y_min, x_max, y_max)
click to toggle source
# File lib/ttfunk/table/glyf/simple.rb, line 11 def initialize(raw, number_of_contours, x_min, y_min, x_max, y_max) @raw = raw @number_of_contours = number_of_contours @x_min = x_min @y_min = y_min @x_max = x_max @y_max = y_max # Because TTFunk is, at this time, a library for simply pulling # metrics out of font files, or for writing font subsets, we don't # really care what the contours are for simple glyphs. We just # care that we've got an entire glyph's definition. Also, a # bounding box could be nice to know. Since we've got all that # at this point, we don't need to worry about parsing the full # contents of the glyph. end
Public Instance Methods
compound?()
click to toggle source
# File lib/ttfunk/table/glyf/simple.rb, line 28 def compound? false end
recode(_mapping)
click to toggle source
# File lib/ttfunk/table/glyf/simple.rb, line 32 def recode(_mapping) raw end