Skip to content

Commit

Permalink
[interpolatable] Fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
behdad committed Dec 1, 2023
1 parent 4764cb5 commit 5847d39
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Lib/fontTools/varLib/interpolatableTestStartingPoint.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ def test_starting_point(glyph0, glyph1, ix, tolerance, matching):
matching = list(range(len(glyph0.isomorphisms)))
contour0 = glyph0.isomorphisms[ix]
contour1 = glyph1.isomorphisms[matching[ix]]
m0Vectors = glyph0.greenVectors[ix]
m1Vectors = glyph1.greenVectors[matching[ix]]
m0Vectors = glyph0.greenVectors
m1Vectors = [glyph1.greenVectors[i] for i in matching]

starting_point = 0
reverse = False
Expand Down

0 comments on commit 5847d39

Please sign in to comment.