{"ScriptPreparationCode":"pointA = { x: 1, y: 2};\r\npointB = { x: 10, y: 5};\r\nmaxDistance = 4;","TestCases":[{"Name":"Simple","Code":"Math.sqrt(Math.pow(pointA.x - pointB.x, 2) \u002B Math.pow(pointA.y - pointB.y, 2)) \u003C maxDistance","IsDeferred":false},{"Name":"Squared comparator","Code":"(Math.pow(pointA.x - pointB.x, 2) \u002B Math.pow(pointA.y - pointB.y, 2)) \u003C Math.pow(maxDistance, 2)","IsDeferred":false}]}