TFT.noStroke()

名称

TFT.noStroke()

説明

この関数を呼び出した後は、表示される図形の枠線の色が消える。

書式

void Adafruit_GFX::noStroke();

引数

なし。

戻り値

なし。

使用例

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#include <SPI.h>
#include <TFT.h>            // Arduino TFT library

#define cs   10
#define dc   9
#define rst  8

TFT screen = TFT(cs, dc, rst);

void setup() {
  // initialize the screen
  screen.begin();

  // make the background black
  screen.background(0,0,0);

  // turn the stroke off
  screen.noStroke();

  // set the fill color to white
  screen.fill(255,255,255);

  // draw a rectangle in the center of screen
  screen.line(screen.width()/2-5, screen.height()/2-5, 10, 10);
}

void loop() {

}

オリジナルのページ

https://www.arduino.cc/reference/en/libraries/tft/nostroke/

最終更新日

January 8, 2024

inserted by FC2 system