Lines Matching refs:t1
425 uint16_t t1 = TperDegree[arc->angle]; in get_subarc_control_points() local
428 float a1x = lerp((float)fullarc.p0x, (float)fullarc.p1x, t1); in get_subarc_control_points()
429 float a1y = lerp((float)fullarc.p0y, (float)fullarc.p1y, t1); in get_subarc_control_points()
431 float b1x = lerp((float)fullarc.p1x, (float)fullarc.p2x, t1); in get_subarc_control_points()
432 float b1y = lerp((float)fullarc.p1y, (float)fullarc.p2y, t1); in get_subarc_control_points()
434 float c1x = lerp((float)fullarc.p2x, (float)fullarc.p3x, t1); in get_subarc_control_points()
435 float c1y = lerp((float)fullarc.p2y, (float)fullarc.p3y, t1); in get_subarc_control_points()
438 float d1x = lerp(a1x, b1x, t1); in get_subarc_control_points()
439 float d1y = lerp(a1y, b1y, t1); in get_subarc_control_points()
441 float e1x = lerp(b1x, c1x, t1); in get_subarc_control_points()
442 float e1y = lerp(b1y, c1y, t1); in get_subarc_control_points()
444 float pt1x = lerp(d1x, e1x, t1); in get_subarc_control_points()
445 float pt1y = lerp(d1y, e1y, t1); in get_subarc_control_points()