Lines Matching refs:increments
654 def makeParametrizedVF(glyphOrder, features, values, increments): argument
661 assert values and len(values) == len(increments)
662 assert all(len(i) == 2 for i in increments)
682 values[i] += increments[i][1]
684 values[i] += increments[i][0]
699 increments = [(+30, +10)]
700 return makeParametrizedVF(glyphOrder, features, values, increments)
708 increments = [(-10, -5)]
709 return makeParametrizedVF(glyphOrder, features, values, increments)
725 increments = [(+30, +10), (-10, -5)]
726 return makeParametrizedVF(glyphOrder, features, values, increments)