Autumn_Ning_Blog icon indicating copy to clipboard operation
Autumn_Ning_Blog copied to clipboard

判断一个点是不是在多边形内部

Open wangning0 opened this issue 7 years ago • 0 comments

function _isInsidePolygon(pt, poly) {  
    for (var c = false, i = -1, l = poly.length, j = l - 1; ++i < l; j = i)  
        ((poly[i].y <= pt.y && pt.y < poly[j].y) || (poly[j].y <= pt.y && pt.y < poly[i].y))  
        && (pt.x < (poly[j].x - poly[i].x) * (pt.y - poly[i].y) / (poly[j].y - poly[i].y) + poly[i].x)  
        && (c = !c);  
    return c;  
}

wangning0 avatar Jun 02 '18 12:06 wangning0