ArduinoGraphics::noStroke()

説明

描画操作の描画色を解除する。

書式

void ArduinoGraphics::noStroke()

引数

なし

戻り値

なし

使用例

1
2
3
4
5
6
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/nostroke/

最終更新日

August 18, 2024

inserted by FC2 system