HomeSort by relevance Sort by last modified time
    Searched refs:solveQuadratic (Results 1 - 2 of 2) sorted by null

  /external/fonttools/Lib/fontTools/misc/
bezierTools.py 15 "solveQuadratic",
62 xRoots = [t for t in solveQuadratic(ax3, bx2, cx) if 0 <= t < 1]
63 yRoots = [t for t in solveQuadratic(ay3, by2, cy) if 0 <= t < 1]
133 solutions = solveQuadratic(a[isHorizontal], b[isHorizontal],
256 def solveQuadratic(a, b, c,
297 return solveQuadratic(b, c, d)
  /external/fonttools/Lib/fontTools/pens/
pointInsidePen.py 8 from fontTools.misc.bezierTools import solveQuadratic, solveCubic
180 solutions = sorted(solveQuadratic(a, b, c - y))

Completed in 697 milliseconds