2010-12-10 23:27:45 +01:00
|
|
|
-- Symbol name
|
2011-02-09 14:18:22 +01:00
|
|
|
local names =
|
2010-12-10 23:27:45 +01:00
|
|
|
{
|
|
|
|
en = "Capacitor",
|
|
|
|
cs = "Kondenzátor"
|
|
|
|
}
|
|
|
|
|
2011-02-11 18:37:00 +01:00
|
|
|
local names_polar =
|
|
|
|
{
|
|
|
|
en = "Polarized capacitor",
|
|
|
|
cs = "Polarizovaný kondenzátor"
|
|
|
|
}
|
|
|
|
|
2010-12-10 23:27:45 +01:00
|
|
|
-- Render area in base units (X1, Y1, X2, Y2)
|
2011-02-11 18:37:00 +01:00
|
|
|
local area = {-2, -1, 2, 1}
|
|
|
|
local area_polar = {-2, -1.5, 2, 1}
|
2010-12-10 23:27:45 +01:00
|
|
|
|
2011-02-11 18:37:00 +01:00
|
|
|
-- Terminal points
|
2011-02-09 14:18:22 +01:00
|
|
|
local terminals = {{-2, 0}, {2, 0}}
|
2010-12-10 23:27:45 +01:00
|
|
|
|
|
|
|
-- Rendering
|
2011-02-09 14:18:22 +01:00
|
|
|
local render = function (cr)
|
2010-12-10 23:27:45 +01:00
|
|
|
-- The vertical lines
|
|
|
|
cr.move_to (-0.2, -1)
|
|
|
|
cr.line_to (-0.2, 1)
|
|
|
|
|
|
|
|
cr.move_to (0.2, -1)
|
|
|
|
cr.line_to (0.2, 1)
|
|
|
|
|
2011-02-11 18:37:00 +01:00
|
|
|
-- The terminals
|
2010-12-10 23:27:45 +01:00
|
|
|
cr.move_to (-2, 0)
|
|
|
|
cr.line_to (-0.2, 0)
|
|
|
|
|
|
|
|
cr.move_to (0.2, 0)
|
|
|
|
cr.line_to (2, 0)
|
2011-02-11 18:37:00 +01:00
|
|
|
|
|
|
|
cr.stroke ()
|
|
|
|
end
|
|
|
|
|
|
|
|
local render_polar = function (cr)
|
|
|
|
render (cr)
|
|
|
|
|
2011-02-14 10:46:57 +01:00
|
|
|
-- The plus sign
|
|
|
|
cr.move_to (-0.6, -1)
|
|
|
|
cr.line_to (-1.4, -1)
|
2011-02-11 18:37:00 +01:00
|
|
|
|
2011-02-14 10:46:57 +01:00
|
|
|
cr.move_to (-1, -1.4)
|
|
|
|
cr.line_to (-1, -0.6)
|
2011-02-11 18:37:00 +01:00
|
|
|
|
2010-12-10 23:27:45 +01:00
|
|
|
cr.stroke ()
|
|
|
|
end
|
|
|
|
|
|
|
|
-- Register the symbol
|
2011-02-11 18:37:00 +01:00
|
|
|
logdiag.register ("Capacitor",
|
|
|
|
names, area, terminals, render)
|
|
|
|
logdiag.register ("CapacitorPolarized",
|
|
|
|
names_polar, area_polar, terminals, render_polar)
|
2010-12-10 23:27:45 +01:00
|
|
|
|
|
|
|
|