We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
■要望 drawDashLineで破線を描画した際に、 drawLineよりも太い線が引かれてしまう問題に遭遇しました。 ※どちらで描画する場合も同じstroke値に設定しています。
それで、破線の太さをdrawLineと 同等にしていただきたいと思ったのですが可能でしょうか?
■修正案 実際にphina.jsのdrawDashLineを以下の様に修正したら 思う様な動作になったのですが、いかがでしょうか?
※phina.js 0.2.0 の 9237行目あたり 既存「this.drawPoint(x, y);」 ↓ 修正案「this.moveTo(x, y).lineTo(x+vx, y+vy).stroke();」
以上、宜しくお願い致します。
The text was updated successfully, but these errors were encountered:
No branches or pull requests
■要望
drawDashLineで破線を描画した際に、
drawLineよりも太い線が引かれてしまう問題に遭遇しました。
※どちらで描画する場合も同じstroke値に設定しています。
それで、破線の太さをdrawLineと
同等にしていただきたいと思ったのですが可能でしょうか?
■修正案
実際にphina.jsのdrawDashLineを以下の様に修正したら
思う様な動作になったのですが、いかがでしょうか?
※phina.js 0.2.0 の 9237行目あたり
既存「this.drawPoint(x, y);」
↓
修正案「this.moveTo(x, y).lineTo(x+vx, y+vy).stroke();」
以上、宜しくお願い致します。
The text was updated successfully, but these errors were encountered: