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