Home
last modified time | relevance | path

Searched refs:t2 (Results 1 – 5 of 5) sorted by relevance

/lvgl-3.5.0/src/draw/nxp/vglite/
Dlv_draw_vglite_arc.c398 uint16_t t2 = TperDegree[arc->angle + span]; in get_subarc_control_points() local
401 float a2x = lerp((float)fullarc.p0x, (float)fullarc.p1x, t2); in get_subarc_control_points()
402 float a2y = lerp((float)fullarc.p0y, (float)fullarc.p1y, t2); in get_subarc_control_points()
404 float b2x = lerp((float)fullarc.p1x, (float)fullarc.p2x, t2); in get_subarc_control_points()
405 float b2y = lerp((float)fullarc.p1y, (float)fullarc.p2y, t2); in get_subarc_control_points()
407 float c2x = lerp((float)fullarc.p2x, (float)fullarc.p3x, t2); in get_subarc_control_points()
408 float c2y = lerp((float)fullarc.p2y, (float)fullarc.p3y, t2); in get_subarc_control_points()
411 float d2x = lerp(a2x, b2x, t2); in get_subarc_control_points()
412 float d2y = lerp(a2y, b2y, t2); in get_subarc_control_points()
414 float e2x = lerp(b2x, c2x, t2); in get_subarc_control_points()
[all …]
/lvgl-3.5.0/src/misc/
Dlv_math.c88 uint32_t t2 = (t * t) >> 10; in lv_bezier3() local
89 uint32_t t3 = (t2 * t) >> 10; in lv_bezier3()
93 uint32_t v3 = (3 * t_rem * t2 * u2) >> 20; in lv_bezier3()
/lvgl-3.5.0/demos/keypad_encoder/
Dlv_demo_keypad_encoder.c37 static lv_obj_t * t2; variable
71 t2 = lv_tabview_add_tab(tv, "Text input"); in lv_demo_keypad_encoder()
74 text_input_create(t2); in lv_demo_keypad_encoder()
/lvgl-3.5.0/demos/widgets/
Dlv_demo_widgets.py559 t2 = tv.add_tab("Visuals") variable
570 visuals_create(t2)
Dlv_demo_widgets.c190 lv_obj_t * t2 = lv_tabview_add_tab(tv, "Analytics"); in lv_demo_widgets() local
193 analytics_create(t2); in lv_demo_widgets()