summaryrefslogtreecommitdiff
path: root/tex/context/base/mkiv/font-ttf.lua
diff options
context:
space:
mode:
authorHans Hagen <pragma@wxs.nl>2021-06-14 17:36:45 +0200
committerContext Git Mirror Bot <phg@phi-gamma.net>2021-06-14 17:36:45 +0200
commit4272a26c49cbfee8917e5272fc0f964cbcfc4b03 (patch)
treeca09a8f6a14ec812751c4571fb91664c5a7b8b1a /tex/context/base/mkiv/font-ttf.lua
parent213813e4bd4ef8d9bbe79100d80e960b7ba53649 (diff)
downloadcontext-4272a26c49cbfee8917e5272fc0f964cbcfc4b03.tar.gz
2021-06-14 17:09:00
Diffstat (limited to 'tex/context/base/mkiv/font-ttf.lua')
-rw-r--r--tex/context/base/mkiv/font-ttf.lua10
1 files changed, 6 insertions, 4 deletions
diff --git a/tex/context/base/mkiv/font-ttf.lua b/tex/context/base/mkiv/font-ttf.lua
index 8573d3a06..69b202b3c 100644
--- a/tex/context/base/mkiv/font-ttf.lua
+++ b/tex/context/base/mkiv/font-ttf.lua
@@ -136,10 +136,12 @@ 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 + yrotate * y + xoffset,
- xrotate * x + yscale * y + yoffset,
+ -- unifractur : u n
+ -- seguiemj : 0x270E 0x2710
+ xscale * x + xrotate * y + xoffset,
+ yscale * y + yrotate * x + yoffset,
+-- xscale * x + yrotate * y + xoffset,
+-- xrotate * x + yscale * y + yoffset,
p[3]
}
end