summaryrefslogtreecommitdiff
path: root/tex/context/base/meta-fun.lua
blob: fef2aa12b8705fb938c067281aabb61ffee3c4b1 (plain)
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
if not modules then modules = { } end modules ['meta-fun'] = {
    version   = 1.001,
    comment   = "companion to meta-fun.mkiv",
    author    = "Hans Hagen, PRAGMA-ADE, Hasselt NL",
    copyright = "PRAGMA ADE / ConTeXt Development Team",
    license   = "see context related readme files",
}

-- very experimental, actually a joke ... see metafun manual for usage

local format, loadstring, type = string.format, loadstring, type
local texwrite = tex.write

metafun = metafun or { }

function metafun.topath(t,connector)
    tex.write("(")
    if #t > 0 then
        for i=1,#t do
            if i > 1 then
                texwrite(connector or "..")
            end
            local ti = t[i]
            if type(ti) == "string" then
                texwrite(ti)
            else
                texwrite(format("(%s,%s)",ti.x or ti[1] or 0,ti.y or ti[2] or 0))
            end
        end
    else
        texwrite("origin")
    end
    texwrite(")")
end

function metafun.interpolate(f,b,e,s,c)
    local done = false
    tex.write("(")
    for i=b,e,(e-b)/s do
        local d = loadstring(format("return function(x) return %s end",f))
        if d then
            d = d()
            if done then
                texwrite(c or "...")
            else
                done = true
            end
            texwrite(format("(%s,%s)",i,d(i)))
        end
    end
    if not done then
        texwrite("origin")
    end
    texwrite(")")
end