Komut
line
Açıklama
İki nokta arasına bir çizgi çizer. line()
ile çizilen bir şeyin rengini değiştirmek için stroke()
kullanın.
Sözdizimi
screen.line (xStart, yStart, xEnd, yEnd);
Parametreler
- xStart: int, çizginin başladığı yatay konum
- yStart: int, çizginin başladığı dikey konum
- xEnd: int, çizginin bittiği yatay konum
- yEnd: int, çizginin bittiği dikey konum
İadeler
Yok
Misal
#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);
// set the stroke color to white
screen.stroke(255,255,255);
// draw a diagonal line across the screen's center
screen.line(0, 0, 160, 124);
}
void loop() {
}
#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);
// set the stroke color to white
screen.stroke(255,255,255);
// draw a diagonal line across the screen's center
screen.line(0, 0, 160, 124);
}
void loop() {
}