Skip to content

Commit 4bbd0ea

Browse files
committed
fix(resistor): bands color and position #74
close #74
1 parent 214b674 commit 4bbd0ea

File tree

1 file changed

+12
-20
lines changed

1 file changed

+12
-20
lines changed

src/resistor-element.ts

Lines changed: 12 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -61,9 +61,6 @@ export class ResistorElement extends LitElement {
6161
if (value === 0) {
6262
return [0, 0];
6363
}
64-
if (exponent < 0 && base % 10 === 0) {
65-
return [base / 10, exponent + 1];
66-
}
6764
return [Math.round(base % 100), exponent];
6865
}
6966

@@ -98,26 +95,21 @@ export class ResistorElement extends LitElement {
9895
</linearGradient>
9996
</defs>
10097
<rect y="1.1759" width="15.645" height=".63826" fill="#eaeaea" />
101-
<g stroke-width=".14479">
98+
<g stroke-width=".14479" fill="#d5b597">
10299
<path
100+
id="body"
103101
d="m4.6918 0c-1.0586 0-1.9185 0.67468-1.9185 1.5022 0 0.82756 0.85995 1.4978 1.9185 1.4978 0.4241 0 0.81356-0.11167 1.1312-0.29411h4.0949c0.31802 0.18313 0.71075 0.29411 1.1357 0.29411 1.0586 0 1.9185-0.67015 1.9185-1.4978 0-0.8276-0.85995-1.5022-1.9185-1.5022-0.42499 0-0.81773 0.11098-1.1357 0.29411h-4.0949c-0.31765-0.18244-0.7071-0.29411-1.1312-0.29411z"
104-
fill="#d5b597"
105-
/>
106-
<path
107-
d="m4.6918 0c-1.0586 0-1.9185 0.67468-1.9185 1.5022 0 0.82756 0.85995 1.4978 1.9185 1.4978 0.4241 0 0.81356-0.11167 1.1312-0.29411h4.0949c0.31802 0.18313 0.71075 0.29411 1.1357 0.29411 1.0586 0 1.9185-0.67015 1.9185-1.4978 0-0.8276-0.85995-1.5022-1.9185-1.5022-0.42499 0-0.81773 0.11098-1.1357 0.29411h-4.0949c-0.31765-0.18244-0.7071-0.29411-1.1312-0.29411z"
108-
fill="url(#a)"
109-
opacity=".44886"
110-
/>
111-
<path
112-
d="m4.6917 0c-0.10922 0-0.21558 0.00884-0.31985 0.022624v2.955c0.10426 0.013705 0.21063 0.02234 0.31985 0.02234 0.15603 0 0.3074-0.015363 0.4522-0.043551v-2.9129c-0.1448-0.028193-0.29617-0.043551-0.4522-0.043552z"
113-
fill="${band1Color}"
114-
/>
115-
<path d="m6.3482 0.29411v2.4117h0.96v-2.4117z" fill="${band2Color}" />
116-
<path d="m8.4245 0.29411v2.4117h0.96v-2.4117z" fill="${band3Color}" />
117-
<path
118-
d="m11.054 0c-0.15608 0-0.30749 0.015253-0.45277 0.043268v2.9134c0.14527 0.028012 0.29669 0.043268 0.45277 0.043268 0.10912 0 0.21539-0.00867 0.31957-0.02234v-2.955c-0.10418-0.013767-0.21044-0.022624-0.31957-0.022624z"
119-
fill="#c4a000"
120102
/>
103+
<use xlink:href="#body" fill="url(#a)" opacity=".44886" />
104+
<rect x="4" y=" 0" width="1" height="3" fill="${band1Color}" clip-path="url(#g)" />
105+
106+
<path d="m6 0.29411v2.4117h0.96v-2.4117z" fill="${band2Color}" />
107+
<path d="m7.8 0.29411v2.4117h0.96v-2.4117z" fill="${band3Color}" />
108+
109+
<rect x="10.69" y=" 0" width="1" height="3" fill="#F1D863" clip-path="url(#g)" />
110+
<clippath id="g">
111+
<use xlink:href="#body" />
112+
</clippath>
121113
</g>
122114
</svg>
123115
`;

0 commit comments

Comments
 (0)