-
Notifications
You must be signed in to change notification settings - Fork 5
/
make_frac.ff
59 lines (52 loc) · 1.46 KB
/
make_frac.ff
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
/*
* Copyright (C) 2010 Andrey V. Panov
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, see <http://www.gnu.org/licenses/>.
*/
# This script makes vulgar fraction
upper_digit = $1
hoff1 = $2
voff1 = $3
lower_glyph = $4
hoff2 = $5
voff2 = $6
fraction = $7
hofff = $8
vofff = $9
final_glyph = $10
width = $11
if (InFont(upper_digit) && InFont(lower_glyph) && InFont(fraction))
if ( WorthOutputting(upper_digit) && WorthOutputting(lower_glyph) && WorthOutputting(fraction) )
if (!InFont(final_glyph))
new_glyph.ff(final_glyph)
endif
if ( WorthOutputting(final_glyph) )
return
endif
Select(upper_digit)
CopyReference()
Select(final_glyph)
PasteWithOffset(hoff1,voff1)
Select(lower_glyph)
CopyReference()
Select(final_glyph)
PasteWithOffset(hoff2,voff2)
Select(fraction)
CopyReference()
Select(final_glyph)
PasteWithOffset(hofff,vofff)
SetWidth(width)
RoundToInt()
endif
endif