summaryrefslogtreecommitdiff
path: root/tex/context/base/mkiv/font-ttf.lua
diff options
context:
space:
mode:
authorHans Hagen <pragma@wxs.nl>2021-06-11 18:38:44 +0200
committerContext Git Mirror Bot <phg@phi-gamma.net>2021-06-11 18:38:44 +0200
commitc2d1340b17aab1f84717895516c128dc2552c199 (patch)
treea516aa0b0b5cfa51c2b5cc280ffb466f238cb55e /tex/context/base/mkiv/font-ttf.lua
parent78aafeff01160ce000074e88a1eaf2cd4b7fbce6 (diff)
downloadcontext-c2d1340b17aab1f84717895516c128dc2552c199.tar.gz
2021-06-11 17:57:00
Diffstat (limited to 'tex/context/base/mkiv/font-ttf.lua')
-rw-r--r--tex/context/base/mkiv/font-ttf.lua6
1 files changed, 4 insertions, 2 deletions
diff --git a/tex/context/base/mkiv/font-ttf.lua b/tex/context/base/mkiv/font-ttf.lua
index a2732aa5f..8573d3a06 100644
--- a/tex/context/base/mkiv/font-ttf.lua
+++ b/tex/context/base/mkiv/font-ttf.lua
@@ -136,8 +136,10 @@ local function mergecomposites(glyphs,shapes)
local y = p[2]
nofpoints = nofpoints + 1
points[nofpoints] = {
- xscale * x + xrotate * y + xoffset,
- yscale * y + yrotate * x + yoffset,
+-- xscale * x + xrotate * y + xoffset,
+-- yscale * y + yrotate * x + yoffset,
+ xscale * x + yrotate * y + xoffset,
+ xrotate * x + yscale * y + yoffset,
p[3]
}
end