Lines Matching defs:kX
66 /* (iX, iY), (kX, kY) are the co-ordinate values of the points */
72 int16_t kX = poly[k].x_;
84 int32_t kPos = static_cast<int32_t>(x2 - x1) * (kY - y1) - static_cast<int32_t>(y2 - y1) * (kX - x1);
90 newPoly[newVertexNum].x_ = kX;
97 bool intersect = Intersect(Line(x1, y1, x2, y2), Line(iX, iY, kX, kY), intersectPoint);
106 newPoly[newVertexNum].x_ = kX;
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 */
154 int16_t kX = poly[k].x_;
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);