символ нагнетательной скважины исправлен

This commit is contained in:
djerom 2022-04-13 17:50:02 +05:00
parent 0d72ce921e
commit bef0a68e3a

View File

@ -34,12 +34,13 @@ export default {
inj(ppu, styles) {
const style_spike = {
"stroke-width": "0",
fill: '#00f'
fill: '#000'
}
const style_blue = {
"stroke-width": Math.round(styles._units["1pt"]),
stroke: '#00f',
stroke: '#000',
fill: '#00f'
}
return SvgNodes.group([
@ -51,9 +52,7 @@ export default {
]).add_style(style_spike),
new SvgNode("line", { x1: -2 * ppu, x2: 2 * ppu, y1: 0, y2: 0 }),
new SvgNode("line", { y1: -2 * ppu, y2: 2 * ppu, x1: 0, x2: 0 }),
SvgNodes.circle(1.5 * ppu)
.add_style(style_blue)
.add_style(styles["white-body"]),
SvgNodes.circle(1.5 * ppu).add_style(style_blue)
]).add_style(style_blue);
},