fixed bug in sopmething

This commit is contained in:
Robert 2021-03-11 11:14:36 +01:00
parent 5470919064
commit 4b3e9a59dc

View file

@ -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)
{