summaryrefslogtreecommitdiff
path: root/tex/context/base/mkiv/meta-fun.lua
blob: ddbbd9a523c05e0fae2b1e2a92d557b1d1bbd8cf (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
56
57
58
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, load, type = string.format, load, type

local context    = context
local metapost   = metapost

metapost.metafun = metapost.metafun or { }
local metafun    = metapost.metafun

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

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