diff --git a/naloga_2/main.js b/naloga_2/main.js index 172ac8c..6cf6065 100644 --- a/naloga_2/main.js +++ b/naloga_2/main.js @@ -117,6 +117,42 @@ function drawCircles() { } } +/** + * @param {number} tStart + * @param {number} tEnd + * @param {number[][]} points + * @returns {{x: number, y: number}[]} + */ +function calcPoints(tStart, tEnd, points) { + const xPoints = points.map((p) => p[0]); + const yPoints = points.map((p) => p[1]); + + const x1 = lerpCurve(tStart, xPoints); + const y1 = lerpCurve(tStart, yPoints); + const x2 = lerpCurve((tStart + tEnd) / 2, xPoints); + const y2 = lerpCurve((tStart + tEnd) / 2, yPoints); + const x3 = lerpCurve(tEnd, xPoints); + const y3 = lerpCurve(tEnd, yPoints); + + const s = + (1 / 2) * Math.abs(x1 * (y2 - y3) + x2 * (y3 - y1) + x3 * (y1 - y2)); + + // const d12 = Math.sqrt((x1 - x2) ** 2 + (y1 - y2) ** 2); + // const d13 = Math.sqrt((x1 - x3) ** 2 + (y1 - y3) ** 2); + // const d23 = Math.sqrt((x2 - x3) ** 2 + (y2 - y3) ** 2); + // + // const angle = Math.acos((d12 ** 2 + d13 ** 2 - d23 ** 2) / (2 * d12 * d13)); + + if (s < 20) { + return [{ x: x3, y: y3 }]; + } + + return [ + ...calcPoints(tStart, (tStart + tEnd) / 2, points), + ...calcPoints((tStart + tEnd) / 2, tEnd, points), + ]; +} + function drawLines() { for (let i = 0; i < curves.length; i++) { const curve = curves[i]; @@ -137,6 +173,13 @@ function drawLines() { } context.moveTo(p1[0], p1[1]); + // + // const points = calcPoints(0, 1, curve); + // + // for (const { x, y } of points) { + // context.lineTo(x, y); + // } + for (let t = 0; t <= 100; t++) { const tt = t / 100; const x = lerpCurve(tt, [p1[0], p2[0], p3[0], p4[0]]);