ArduinoGraphics::ellipse()
説明
楕円を描画し、塗りつぶす。stroke()で設定した描画色と、fill()で設定した塗りつぶし色を利用する。
書式
void ArduinoGraphics::ellipse(int x, int y, int width, int height)
引数
x | 楕円の中心のX座標 |
y | 楕円の中心のY座標 |
width | 楕円の幅 |
height | 楕円の高さ |
戻り値
なし
使用例
YourScreen.beginDraw();
YourScreen.clear();
YourScreen.noStroke();
YourScreen.fill(255, 255, 0);
YourScreen.ellipse(YourScreen.width()/2, YourScreen.height()/2, YourScreen.width(), YourScreen.height());
YourScreen.endDraw();
オリジナルのページ
https://www.arduino.cc/reference/en/libraries/arduinographics/ellipse/
最終更新日
August 18, 2024