Split the inductor symbol in two, remove pads.
This commit is contained in:
parent
00d9072c5b
commit
847945f051
|
@ -1,34 +1,43 @@
|
||||||
-- Symbol name
|
-- Symbol names
|
||||||
names =
|
names_normal =
|
||||||
{
|
{
|
||||||
en = "Inductor",
|
en = "Inductor",
|
||||||
cs = "Cívka"
|
cs = "Cívka"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
names_core =
|
||||||
|
{
|
||||||
|
en = "Inductor with magnetic core",
|
||||||
|
cs = "Cívka s magnetickým jádrem"
|
||||||
|
}
|
||||||
|
|
||||||
-- Render area in base units (X1, Y1, X2, Y2)
|
-- Render area in base units (X1, Y1, X2, Y2)
|
||||||
area = {-3, -1, 3, 0}
|
area = {-2, -1, 2, 0}
|
||||||
|
|
||||||
-- Terminals
|
-- Terminals
|
||||||
terminals = {{-3, 0}, {3, 0}}
|
terminals = {{-2, 0}, {2, 0}}
|
||||||
|
|
||||||
-- Rendering
|
-- Rendering
|
||||||
render = function (cr)
|
render_normal = function (cr)
|
||||||
-- The left contact
|
|
||||||
cr.move_to (-3, 0)
|
|
||||||
cr.line_to (-2, 0)
|
|
||||||
|
|
||||||
-- The arcs
|
-- The arcs
|
||||||
cr.arc (-1.5, 0, 0.5, math.pi, 0)
|
cr.arc (-1.5, 0, 0.5, math.pi, 0)
|
||||||
cr.arc (-0.5, 0, 0.5, math.pi, 0)
|
cr.arc (-0.5, 0, 0.5, math.pi, 0)
|
||||||
cr.arc (0.5, 0, 0.5, math.pi, 0)
|
cr.arc (0.5, 0, 0.5, math.pi, 0)
|
||||||
cr.arc (1.5, 0, 0.5, math.pi, 0)
|
cr.arc (1.5, 0, 0.5, math.pi, 0)
|
||||||
|
|
||||||
-- The right contact
|
|
||||||
cr.line_to (3, 0)
|
|
||||||
cr.stroke ()
|
cr.stroke ()
|
||||||
end
|
end
|
||||||
|
|
||||||
-- Register the symbol
|
render_core = function (cr)
|
||||||
logdiag.register ("Inductor", names, area, terminals, render)
|
render_normal (cr)
|
||||||
|
|
||||||
|
-- The core
|
||||||
|
cr.move_to (-2, -1)
|
||||||
|
cr.line_to (2, -1)
|
||||||
|
cr.stroke ()
|
||||||
|
end
|
||||||
|
|
||||||
|
-- Register the symbols
|
||||||
|
logdiag.register ("Inductor", names_normal, area, terminals, render_normal)
|
||||||
|
logdiag.register ("InductorWithCore", names_core, area, terminals, render_core)
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue