[WIP][DEBUG]
This commit is contained in:
parent
cfc13bbc13
commit
519a41c7a4
4 changed files with 71 additions and 24 deletions
15
bezier_circle_approximation.scad
Normal file
15
bezier_circle_approximation.scad
Normal 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]
|
||||
);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue