From 4b3e9a59dc54cc3cda551c4fe3142cb974a75cca Mon Sep 17 00:00:00 2001 From: Robert Date: Thu, 11 Mar 2021 11:14:36 +0100 Subject: [PATCH] fixed bug in sopmething --- pendulum/main.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pendulum/main.js b/pendulum/main.js index 7f09a318..b1b514b9 100644 --- a/pendulum/main.js +++ b/pendulum/main.js @@ -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) { @@ -62,7 +62,7 @@ function insideShape(point) j=i; } - return (oddNodes ? 19300 * 0.01 : 0); // 19.3 kgm^-3 at 1cm thick + return (oddNodes ? 19300 * 0.01 : 0); // 19.3 kgm^-3 at 1cm thick } function massHelper(y, samples)