fixed bug in sopmething
This commit is contained in:
parent
5470919064
commit
4b3e9a59dc
|
@ -40,7 +40,7 @@ function worldToScreen(point)
|
|||
function insideShape(point)
|
||||
{
|
||||
if(!shapeComplete)
|
||||
return false;
|
||||
return 0;
|
||||
|
||||
// Raycasting algorithm
|
||||
point = worldToScreen(point);
|
||||
|
@ -52,7 +52,7 @@ function insideShape(point)
|
|||
{
|
||||
if ((points[i].y < point.y && points[j].y >= point.y
|
||||
|| points[j].y < point.y && points[i].y >= point.y)
|
||||
&& (points[i].x <= point.x || points[j].y <= point.x))
|
||||
&& (points[i].x <= point.x || points[j].x <= point.x))
|
||||
{
|
||||
if (points[i].x + (point.y - points[i].y) / (points[j].y - points[i].y) * (points[j].x - points[i].x) < point.x)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue