function computeVelocity(toolpath, rampSpeed, maxVelocity) {
let result = [];
let currentTime = 0;
let currentVelocity = 0;
for (let i = 0; i < toolpath.length - 1; i++) {
let distance = Math.sqrt(
Math.pow(toolpath[i + 1].x - toolpath[i].x, 2) +
Math.pow(toolpath[i + 1].y - toolpath[i].y, 2)
);
let timeToReach = distance / rampSpeed;
while (currentVelocity < maxVelocity && currentTime < timeToReach) {
result.push({ time: currentTime, velocity: currentVelocity });
currentVelocity += rampSpeed * 0.01;
currentTime += 0.01;
}
while (currentTime < timeToReach) {
result.push({ time: currentTime, velocity: maxVelocity });
currentTime += 0.01;
}
}
return result;
}