line()
描述
在指定的兩個點之間畫一條線。
使用 stroke()
改變 line()
畫出的線的顏色。
語法
screen.line(xStart, yStart, xEnd, yEnd);
參數
xStart
:線段起始點的位置中的 x 座標,型態為 int
yStart
:線段起始點的位置中的 y 座標,型態為 int
xEnd
:線段終點的位置中的 x 座標,型態為 int
yEnd
:線段終點的位置中的 y 座標,型態為 int
回傳
回傳值
範例
#include <SPI.h> #include <TFT.h> #define cs 10 #define dc 9 #define rst 8 TFT screen = TFT(cs, dc, rst); void setup() { // 初始化 TFT 物件 screen.begin(); // 設定背景色為黑色 screen.background(0,0,0); // 設定線段的顏色為白色 screen.stroke(255,255,255); // 畫一條對角線 screen.line(0, 0, 160, 124); } void loop() { }
See also
The text of the 86Duino reference is a modification of the Arduino reference, and is licensed under a Creative Commons Attribution-ShareAlike 3.0 License. Code samples in the reference are released into the public domain.