Home | History | Annotate | Download | only in Intersection

Lines Matching defs:tValue

26     double tValue;
34 if (findExtrema(quad[0].y, quad[1].y, quad[2].y, &tValue)) {
35 double yExtrema = interp_quad_coords(quad[0].y, quad[1].y, quad[2].y, tValue);
47 double tValue;
55 if (findExtrema(quad[0].x, quad[1].x, quad[2].x, &tValue)) {
56 double xExtrema = interp_quad_coords(quad[0].x, quad[1].x, quad[2].x, tValue);
96 double tValue;
99 root = findExtrema(quad[0].x, quad[1].x, quad[2].x, &tValue);
101 root = findExtrema(quad[0].y, quad[1].y, quad[2].y, &tValue);
105 extrema.x = interp_quad_coords(quad[0].x, quad[1].x, quad[2].x, tValue);
106 extrema.y = interp_quad_coords(quad[0].y, quad[1].y, quad[2].y, tValue);