[WIP][DEBUG]

This commit is contained in:
djerun 2025-06-15 16:30:38 +02:00
commit 519a41c7a4
4 changed files with 71 additions and 24 deletions

View file

@ -0,0 +1,15 @@
a=90;
module bezier_curve(p0, p1, p2, p3) {
// TODO
}
module /*TODO*/ {
c = /*TODO*/;
bezier_curve(
[0, 1],
[c, 1],
[1, c],
[1, 0]
);
}