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

TFT
stroke()
point()


函式库参考主页面

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.