Lines Matching defs:kY
66 /* (iX, iY), (kX, kY) are the co-ordinate values of the points */
73 int16_t kY = poly[k].y_;
84 int32_t kPos = static_cast<int32_t>(x2 - x1) * (kY - y1) - static_cast<int32_t>(y2 - y1) * (kX - x1);
91 newPoly[newVertexNum].y_ = kY;
97 bool intersect = Intersect(Line(x1, y1, x2, y2), Line(iX, iY, kX, kY), intersectPoint);
107 newPoly[newVertexNum].y_ = kY;
112 bool intersect = Intersect(Line(x1, y1, x2, y2), Line(iX, iY, kX, kY), intersectPoint);
148 /* (iX, iY), (kX, kY) are the co-ordinate values of the points */
155 int16_t kY = poly[k].y_;
166 int32_t kPos = static_cast<int32_t>(x2 - x1) * (kY - y1) - static_cast<int32_t>(y2 - y1) * (kX - x1);
170 Intersect(Line(x1, y1, x2, y2), Line(iX, iY, kX, kY), intersectPoint);