Home
last modified time | relevance | path

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

/lvgl-3.7.0/src/draw/nxp/vglite/
Dlv_draw_vglite_arc.c334 static inline float lerp(float coord_a, float coord_b, uint16_t t) in lerp() function
405 float a2x = lerp((float)fullarc.p0x, (float)fullarc.p1x, t2); in get_subarc_control_points()
406 float a2y = lerp((float)fullarc.p0y, (float)fullarc.p1y, t2); in get_subarc_control_points()
408 float b2x = lerp((float)fullarc.p1x, (float)fullarc.p2x, t2); in get_subarc_control_points()
409 float b2y = lerp((float)fullarc.p1y, (float)fullarc.p2y, t2); in get_subarc_control_points()
411 float c2x = lerp((float)fullarc.p2x, (float)fullarc.p3x, t2); in get_subarc_control_points()
412 float c2y = lerp((float)fullarc.p2y, (float)fullarc.p3y, t2); in get_subarc_control_points()
415 float d2x = lerp(a2x, b2x, t2); in get_subarc_control_points()
416 float d2y = lerp(a2y, b2y, t2); in get_subarc_control_points()
418 float e2x = lerp(b2x, c2x, t2); in get_subarc_control_points()
[all …]