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
素晴らしいライブラリの公開ありがとうございます。
冒頭のrx, ryがゼロのときの処理ですが、線を引く処理の第3引数についてrx, ryが逆ではないでしょうか? if (ry == 0) { drawFastHLine(x - rx, y, (ry << 2) + 1); return; } if (rx == 0) { drawFastVLine(x, y - ry, (rx << 2) + 1); return; }
本来の意図として、例えばryが0のときは、横幅がrxの2倍+1の横線を表示するほうがよいのでは?と考えています。 ご検討お願いいたします。
The text was updated successfully, but these errors were encountered:
@matsuura-h 情報ありがとうございます!これはうっかりミスですね…修正します。 お知らせくださって助かりました。
Sorry, something went wrong.
Fixed wrong behavior when drawEllipse and fillEllipse width is 0 ( #544…
2579b3e
… )
@lovyan03 ご確認ありがとうございます。 修正いただいたソースも拝見いたしました。 本件、Closeとさせていただきます。
No branches or pull requests
素晴らしいライブラリの公開ありがとうございます。
Environment ( 実行環境 )
Problem Description ( 問題の内容 )
冒頭のrx, ryがゼロのときの処理ですが、線を引く処理の第3引数についてrx, ryが逆ではないでしょうか?
if (ry == 0) {
drawFastHLine(x - rx, y, (ry << 2) + 1);
return;
}
if (rx == 0) {
drawFastVLine(x, y - ry, (rx << 2) + 1);
return;
}
本来の意図として、例えばryが0のときは、横幅がrxの2倍+1の横線を表示するほうがよいのでは?と考えています。
ご検討お願いいたします。
The text was updated successfully, but these errors were encountered: