enable to add new points on spline

This commit is contained in:
Thibaud Gasser 2024-09-27 17:57:08 +02:00
parent af199a6d9c
commit 7c06d07bb0
3 changed files with 43 additions and 7 deletions

View File

@ -5,6 +5,18 @@ export function lerp(a, b, p) {
}; };
} }
export function quadraticBezier(a, b, c, res=0.05) {
const eps = 0.001; // to prevent issues with float comparaison (p <= 1)
const curve = [];
for (let p = 0; p - 1 < eps; p += res) {
const ab = lerp(a, b, p);
const bc = lerp(b, c, p);
const abc = lerp(ab, bc, p);
curve.push(abc);
}
return curve;
}
export function cubicBezier(a, b, c, d, res=0.05) { export function cubicBezier(a, b, c, d, res=0.05) {
const eps = 0.001; // to prevent issues with float comparaison (p <= 1) const eps = 0.001; // to prevent issues with float comparaison (p <= 1)
const curve = []; const curve = [];

View File

@ -18,6 +18,7 @@
<li><a href="/grid.html">Grid</a></li> <li><a href="/grid.html">Grid</a></li>
<li><a href="/bezier-1.html">Bezier demo #1</a></li> <li><a href="/bezier-1.html">Bezier demo #1</a></li>
<li><a href="/bezier-2.html">Bezier demo #2</a></li> <li><a href="/bezier-2.html">Bezier demo #2</a></li>
<li><a href="/spline.html">Bezier spline demo</a></li>
</ul> </ul>
</body> </body>
</html> </html>

View File

@ -1,4 +1,4 @@
import { resizeCanvas, drawCircle, drawLine, cubicBezier } from "./common.js" import { resizeCanvas, drawCircle, drawLine, cubicBezier, quadraticBezier } from "./common.js"
function drawPoints(ctx, points) { function drawPoints(ctx, points) {
for (const p of points) { for (const p of points) {
@ -14,12 +14,21 @@ function drawCurve(ctx, curve) {
} }
function draw(ctx, points) { function draw(ctx, points) {
const bezier1 = cubicBezier(...points.slice(0, 4)); let start = 0;
drawCurve(ctx, bezier1); while (true) {
const sl = points.slice(start, start + 4);
const bezier2 = cubicBezier(...points.slice(3, 7)); if (sl.length === 4) {
drawCurve(ctx, bezier2); const bezier = cubicBezier(...sl);
drawCurve(ctx, bezier);
start += 3;
} else if (sl.length === 3) {
const bezier = quadraticBezier(...sl);
drawCurve(ctx, bezier);
start += 2;
} else {
break;
}
}
drawPoints(ctx, points); drawPoints(ctx, points);
} }
@ -41,6 +50,13 @@ function init() {
resizeCanvas(ctx); // Init canvas resizeCanvas(ctx); // Init canvas
draw(ctx, points); draw(ctx, points);
canvas.oncontextmenu = (evt) => {
evt.preventDefault();
points = [];
// redraw
ctx.clearRect(0, 0, ctx.canvas.width, ctx.canvas.height);
draw(ctx, points);
};
canvas.onmousedown = (evt) => { canvas.onmousedown = (evt) => {
const { clientX, clientY } = evt; const { clientX, clientY } = evt;
for (const p of points) { for (const p of points) {
@ -48,6 +64,13 @@ function init() {
selection = points.indexOf(p); selection = points.indexOf(p);
} }
} }
if (selection === undefined) {
points.push({ x: clientX, y: clientY });
// redraw
ctx.clearRect(0, 0, ctx.canvas.width, ctx.canvas.height);
draw(ctx, points);
}
}; };
canvas.onmousemove = (evt) => { canvas.onmousemove = (evt) => {