Searched refs:start_point (Results 1 – 8 of 8) sorted by relevance
/lvgl-latest/src/draw/renesas/dave2d/ |
D | lv_draw_dave2d_arc.c | 94 lv_point_t start_point; in lv_draw_dave2d_arc() local 97 start_point.x = arc_centre.x + (int16_t)(((dsc->radius) * cos_start) >> LV_TRIGO_SHIFT); in lv_draw_dave2d_arc() 98 start_point.y = arc_centre.y + (int16_t)(((dsc->radius) * sin_start) >> LV_TRIGO_SHIFT); in lv_draw_dave2d_arc() 103 arc_area.x1 = LV_MIN3(start_point.x, end_point.x, arc_centre.x); in lv_draw_dave2d_arc() 104 arc_area.y1 = LV_MIN3(start_point.y, end_point.y, arc_centre.y); in lv_draw_dave2d_arc() 106 arc_area.x2 = LV_MAX3(start_point.x, end_point.x, arc_centre.x); in lv_draw_dave2d_arc() 107 arc_area.y2 = LV_MAX3(start_point.y, end_point.y, arc_centre.y); in lv_draw_dave2d_arc()
|
/lvgl-latest/src/widgets/chart/ |
D | lv_chart.c | 124 ser->start_point = 0; in lv_chart_set_point_count() 209 return ser->start_point; in lv_chart_get_x_start_point() 277 uint32_t start_point = chart->update_mode == LV_CHART_UPDATE_MODE_SHIFT ? ser->start_point : 0; in lv_chart_get_point_pos_by_id() local 278 id = ((int32_t)start_point + id) % chart->point_cnt; in lv_chart_get_point_pos_by_id() 343 ser->start_point = 0; in lv_chart_add_series() 409 ser->start_point = id; in lv_chart_set_x_start_point() 487 ser->start_point = 0; in lv_chart_set_all_values() 497 ser->y_points[ser->start_point] = value; in lv_chart_set_next_value() 498 invalidate_point(obj, ser->start_point); in lv_chart_set_next_value() 499 ser->start_point = (ser->start_point + 1) % chart->point_cnt; in lv_chart_set_next_value() [all …]
|
D | lv_chart_private.h | 37 uint32_t start_point; member
|
/lvgl-latest/examples/widgets/chart/ |
D | lv_example_chart_7.c | 21 uint32_t start_point = lv_chart_get_x_start_point(obj, ser); in draw_event_cb() local 22 …uint32_t p_act = (start_point + base_dsc->id2) % cnt; /*Consider start point to get the index of t… in draw_event_cb()
|
/lvgl-latest/src/indev/ |
D | lv_indev_gesture_private.h | 42 lv_point_t start_point; /* The coordinates where the DOWN event occurred */ member
|
D | lv_indev_gesture.c | 448 motion->start_point.x = touch->point.x; in process_touch_event() 449 motion->start_point.y = touch->point.y; in process_touch_event()
|
/lvgl-latest/docs/details/widgets/ |
D | chart.rst | 303 ``start_point``.
|
/lvgl-latest/src/libs/tiny_ttf/ |
D | stb_truetype_htcw.h | 3131 …__active_edge * stbtt__new_active(stbtt__hheap * hh, stbtt__edge * e, int off_x, float start_point, argument 3145 z->x = STBTT_ifloor(STBTT_FIX * e->x0 + z->dx * (start_point - 3155 …__active_edge * stbtt__new_active(stbtt__hheap * hh, stbtt__edge * e, int off_x, float start_point, argument 3165 z->fx = e->x0 + dxdy * (start_point - e->y0);
|