ArduinoGraphics::rect()
説明
長方形を描画し、塗りつぶす。stroke()で設定した描画色と、fill()で設定した塗りつぶし色を利用する。
書式
void ArduinoGraphics::rect(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.rect(0, 0, YourScreen.width(), YourScreen.height());
YourScreen.endDraw();
オリジナルのページ
https://www.arduino.cc/reference/en/libraries/arduinographics/rect/
最終更新日
August 18, 2024