circle()
描述
在萤幕上画一个圆形。
语法
screen.circle(xPos, yPos, radius);
参数
xPos:圆心的位置的 x 座标,型态为 int
yPos:圆心的位置的 y 座标,型态为 int
radius:圆的半径,型态为 int
回传
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.fill(127,127,127);
// 在正中央画一个圆形
screen.circle(screen.width()/2, screen.height()/2, 10);
}
void loop() {
}
See also
- TFT
- rect()
- line()
- 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.
