本文整理汇总了C++中Adafruit_ST7735::fillCircle方法的典型用法代码示例。如果您正苦于以下问题:C++ Adafruit_ST7735::fillCircle方法的具体用法?C++ Adafruit_ST7735::fillCircle怎么用?C++ Adafruit_ST7735::fillCircle使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Adafruit_ST7735
的用法示例。
在下文中一共展示了Adafruit_ST7735::fillCircle方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: testfillcircles
void testfillcircles(uint8_t radius, uint16_t color) {
for (int16_t x=radius; x < tft.width(); x+=radius*2) {
for (int16_t y=radius; y < tft.height(); y+=radius*2) {
tft.fillCircle(x, y, radius, color);
}
}
}
示例2: draw_cursor
void draw_cursor() {
// the current position of the cursor on the screen, if visible
uint16_t cursor_screen_x;
uint16_t cursor_screen_y;
if (get_cursor_screen_x_y(&cursor_screen_x, &cursor_screen_y)) {
cursor_screen_x = cursor_map_x - screen_map_x;
cursor_screen_y = cursor_map_y - screen_map_y;
tft.fillCircle(cursor_screen_x, cursor_screen_y, dot_radius, RED);
}
}