updated temperature rendering

This commit is contained in:
Peli de Halleux 2016-03-14 14:32:33 -07:00
parent 8277063e71
commit ea325a6ffa
1 changed files with 2 additions and 2 deletions

View File

@ -260,7 +260,7 @@ namespace ks.rt.micro_bit {
rx:5, ry:5,
fill:`url(#${gid})`
});
this.thermometerText = Svg.child(this.g, "text", { class:'sim-text', x:75, y:130}) as SVGTextElement;
this.thermometerText = Svg.child(this.g, "text", { class:'sim-text', x:60, y:130}) as SVGTextElement;
this.updateTheme();
let pt = this.element.createSVGPoint();
@ -276,7 +276,7 @@ namespace ks.rt.micro_bit {
let t = Math.max(tmin, Math.min(tmax, state.temperature))
let per = Math.floor((state.temperature - tmin) / (tmax-tmin)*100)
Svg.setGradientValue(this.thermometerGradient, 100 - per + '%');
this.thermometerText.textContent = t + ';
this.thermometerText.textContent = t + C';
}
private updateHeading() {