Skip to content
New issue

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

drawEllipseとfillEllipseの、rxとryの一方だけが0のときの挙動について #544

Closed
matsuura-h opened this issue Mar 19, 2024 · 2 comments

Comments

@matsuura-h
Copy link

素晴らしいライブラリの公開ありがとうございます。

Environment ( 実行環境 )

  • LovyanGFX version: githubの最新版

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の横線を表示するほうがよいのでは?と考えています。
ご検討お願いいたします。

@lovyan03
Copy link
Owner

@matsuura-h
情報ありがとうございます!これはうっかりミスですね…修正します。
お知らせくださって助かりました。

@matsuura-h
Copy link
Author

@lovyan03
ご確認ありがとうございます。
修正いただいたソースも拝見いたしました。
本件、Closeとさせていただきます。

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants