summaryrefslogtreecommitdiff
path: root/misc/pylib/booleanOperations
AgeCommit message (Collapse)AuthorFilesLines
2018-09-03Major overhaul, moving from UFO2 to Glyphs and UFO3, plus a brand new and ↵Rasmus Andersson10-1722/+0
much simpler fontbuild
2018-08-28upgrade dependenciesRasmus Andersson1-3/+3
2018-01-24booleanOperations library: remove unreachable break and add exception ↵Rasmus Andersson2-2/+7
instead of assertion, as done in upstream
2017-09-04Speeds up font compilation by around 200%Rasmus Andersson10-0/+1717
Cython is used to compile some hot paths into native Python extensions. These hot paths were identified through running ufocompile with the hotshot profiler and then converting file by file to Cython, starting with the "hottest" paths and continuing until returns were deminishing. This means that only a few Python files were converted to Cython. Closes #23 Closes #20 (really this time)