-
3c9a90a0 :新月メータ DpCyEXZ1YdZ
2026-01-26 13:58
-
SGT-Meter7のブラウザ版アプリに対する修正です。
微小な変化では針の動きがカクカクしていましたが、
「gauge.js」を次のように修正すると滑らかに動くようになります。
--------
修正箇所:sgt-meter7ディレクトリにあるgauge.jsの354,355行
元のコード:
x = Math.round(this.length * Math.cos(angle));
y = Math.round(this.length * Math.sin(angle));
修正後のコード:
x = (this.length * Math.cos(angle));
y = (this.length * Math.sin(angle));
--------
Powered by shinGETsu.