Lines Matching refs:t2
402 uint16_t t2 = TperDegree[arc->angle + span]; in get_subarc_control_points() local
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()
419 float e2y = lerp(b2y, c2y, t2); in get_subarc_control_points()
421 float pt2x = lerp(d2x, e2x, t2); in get_subarc_control_points()
422 float pt2y = lerp(d2y, e2y, t2); in get_subarc_control_points()