git-svn-id: svn://svn.code.sf.net/p/fonttools/code/trunk@2 4cde692c-a291-49d1-8350-778aa11640f8
15 lines
300 B
Python
15 lines
300 B
Python
import DefaultTable
|
|
import Numeric
|
|
from fontTools import ttLib
|
|
from fontTools.misc.textTools import safeEval
|
|
|
|
superclass = ttLib.getTableClass("hmtx")
|
|
|
|
class table__v_m_t_x(superclass):
|
|
|
|
headerTag = 'vhea'
|
|
advanceName = 'height'
|
|
sideBearingName = 'tsb'
|
|
numberOfMetricsName = 'numberOfVMetrics'
|
|
|