Home
last modified time | relevance | path

Searched refs:point_array (Results 1 – 3 of 3) sorted by relevance

/lvgl-latest/src/widgets/line/
Dlv_line.c99 return line->point_array.constant; in lv_line_get_points()
127 return line->point_array.mut; in lv_line_get_points_mutable()
151 line->point_array.constant = NULL; in lv_line_constructor()
165 line->point_array.constant = points; in line_set_points()
206 if(line->point_num == 0 || line->point_array.constant == NULL) return; in lv_line_event()
214 if(!LV_COORD_IS_PCT((int32_t)line->point_array.constant[i].x)) { in lv_line_event()
215 w = (int32_t)LV_MAX(line->point_array.constant[i].x, w); in lv_line_event()
218 if(!LV_COORD_IS_PCT((int32_t)line->point_array.constant[i].y)) { in lv_line_event()
219 h = (int32_t)LV_MAX(line->point_array.constant[i].y, h); in lv_line_event()
230 if(line->point_num == 0 || line->point_array.constant == NULL) return; in lv_line_event()
[all …]
Dlv_line_private.h36 } point_array; /**< Pointer to an array with the points of the line*/ member
/lvgl-latest/docs/details/widgets/
Dline.rst30 the Widget by the :cpp:expr:`lv_line_set_points(lines, point_array, point_cnt)`