aboutsummaryrefslogtreecommitdiff
path: root/share/library/Misc/junction.lua
blob: af1cee4c81958686ff6bc301dcd4e2ac72018c92 (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
-- Symbol name
local names =
{
	en = "Junction",
	cs = "Spoj",
	sk = "Spoj",
	pl = "Złącze"
}

-- Render area in base units (X1, Y1, X2, Y2)
local area = {-0.5, -0.5, 0.5, 0.5}

-- Terminal points
local terminals = {}

-- Rendering
local render = function (cr)
	-- The disk
	cr.arc (0, 0, 0.3, 0, math.pi * 2)
	cr.fill ()
end

-- Register the symbol
logdiag.register ("Junction", names, area, terminals, render)