aboutsummaryrefslogtreecommitdiffstats
path: root/Lib/defconQt/representationFactories/qPainterPathFactory.py
blob: 7270f5f3ab7dec479c93396d14cf05a1855e5c0a (plain)
1
2
3
4
5
6
7
8
9
from fontTools.pens.qtPen import QtPen
from PyQt5.QtCore import Qt


def QPainterPathFactory(glyph):
    pen = QtPen(glyph.layer)
    glyph.draw(pen)
    pen.path.setFillRule(Qt.WindingFill)
    return pen.path