File: largeop.py

package info (click to toggle)
firefox-esr 140.5.0esr-1~deb13u1
  • links: PTS, VCS
  • area: main
  • in suites: trixie-proposed-updates
  • size: 4,539,036 kB
  • sloc: cpp: 7,381,527; javascript: 6,388,905; ansic: 3,710,087; python: 1,393,776; xml: 628,165; asm: 426,918; java: 184,004; sh: 65,744; makefile: 19,302; objc: 13,059; perl: 12,912; yacc: 4,583; cs: 3,846; pascal: 3,352; lex: 1,720; ruby: 1,226; exp: 762; php: 436; lisp: 258; awk: 247; sql: 66; sed: 54; csh: 10
file content (83 lines) | stat: -rwxr-xr-x 3,145 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
#!/usr/bin/env python3

from utils import mathfont
import fontforge

nAryWhiteVerticalBarCodePoint = 0x2AFF
v1 = 5 * mathfont.em
f = mathfont.create("largeop-displayoperatorminheight%d" % v1,
                    "Copyright (c) 2016 MathML Association")
f.math.DisplayOperatorMinHeight = v1
mathfont.createSquareGlyph(f, nAryWhiteVerticalBarCodePoint)
g = f.createChar(-1, "uni2AFF.display")
mathfont.drawRectangleGlyph(g, mathfont.em, v1, 0)
f[nAryWhiteVerticalBarCodePoint].verticalVariants = "uni2AFF uni2AFF.display"
mathfont.save(f)

v1 = 3 * mathfont.em
v2 = mathfont.em
f = mathfont.create("largeop-displayoperatorminheight%d-2AFF-axisheight%d" % (v1, v2),
                    "Copyright (c) 2025 Igalia S.L.")
f.math.DisplayOperatorMinHeight = v1
f.math.AxisHeight = v2
mathfont.createSquareGlyph(f, nAryWhiteVerticalBarCodePoint)
g = f.createChar(-1, "uni2AFF.display")
p = g.glyphPen()
p.moveTo(0, 0)
p.lineTo(0, v1)
p.lineTo(mathfont.em, v1)
p.lineTo(mathfont.em, 0)
p.closePath()
g.width = mathfont.em
g.italicCorrection = 0
f[nAryWhiteVerticalBarCodePoint].verticalVariants = "uni2AFF uni2AFF.display"
mathfont.save(f)

v1 = 2 * mathfont.em
v2 = 3 * mathfont.em
f = mathfont.create("largeop-displayoperatorminheight%d-2AFF-italiccorrection%d" % (v1, v2),
                    "Copyright (c) 2018 Igalia S.L.")
f.math.DisplayOperatorMinHeight = v1
mathfont.createSquareGlyph(f, nAryWhiteVerticalBarCodePoint)
g = f.createChar(-1, "uni2AFF.display")
p = g.glyphPen()
p.moveTo(0, 0)
p.lineTo(v2, v1)
p.lineTo(v2 + mathfont.em, v1)
p.lineTo(mathfont.em, 0)
p.closePath()
g.width = mathfont.em + v2
g.italicCorrection = v2
f[nAryWhiteVerticalBarCodePoint].verticalVariants = "uni2AFF uni2AFF.display"
mathfont.save(f)

v1 = 7 * mathfont.em
v2 = 5 * mathfont.em
f = mathfont.create("largeop-displayoperatorminheight%d-2AFF-italiccorrection%d" % (v1, v2),
                    "Copyright (c) 2020 Igalia S.L.")
f.math.DisplayOperatorMinHeight = v1
f.math.MinConnectorOverlap = 0
mathfont.createSquareGlyph(f, nAryWhiteVerticalBarCodePoint)
g = f.createChar(-1, "uni2AFF.bot")
mathfont.drawRectangleGlyph(g,
                            width=2 * mathfont.em,
                            ascent=mathfont.em)
g = f.createChar(-1, "uni2AFF.ext")
mathfont.drawRectangleGlyph(g,
                            width=mathfont.em,
                            ascent=2 * mathfont.em,
                            padding_left=mathfont.em)
g = f.createChar(-1, "uni2AFF.top")
mathfont.drawRectangleGlyph(g,
                            width=v2 + mathfont.em,
                            ascent=mathfont.em,
                            padding_left=mathfont.em)
f[nAryWhiteVerticalBarCodePoint].verticalVariants = "uni2AFF"
# Part: (glyphName, isExtender, startConnector, endConnector, fullAdvance)
f[nAryWhiteVerticalBarCodePoint].verticalComponents = \
    (("uni2AFF.bot", False, 0, mathfont.em // 2, mathfont.em),
     ("uni2AFF.ext", True, mathfont.em // 2, mathfont.em // 2, 2 * mathfont.em),
     ("uni2AFF.top", False, mathfont.em // 2, 0, mathfont.em)
     )
f[nAryWhiteVerticalBarCodePoint].verticalComponentItalicCorrection = v2
mathfont.save(f)