Add a symbol for junctions.

This commit is contained in:
Přemysl Eric Janouch 2011-02-15 18:04:31 +01:00
parent 412a01690b
commit 6a8238846c
1 changed files with 24 additions and 0 deletions

View File

@ -0,0 +1,24 @@
-- Symbol name
local names =
{
en = "Junction",
cs = "Spoj"
}
-- 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)