Fix misspelled local variable in egg() module
This commit is contained in:
parent
5246f78d34
commit
37c55b67b5
|
@ -247,11 +247,11 @@ module square_pyramid(base_x, base_y,height)
|
||||||
polyhedron(points=[[-w,-h,0],[-w,h,0],[w,h,0],[w,-h,0],[0,0,height]],triangles=[[0,3,2,1], [0,1,4], [1,2,4], [2,3,4], [3,0,4]]);
|
polyhedron(points=[[-w,-h,0],[-w,h,0],[w,h,0],[w,-h,0],[0,0,height]],triangles=[[0,3,2,1], [0,1,4], [1,2,4], [2,3,4], [3,0,4]]);
|
||||||
}
|
}
|
||||||
|
|
||||||
module egg(width, lenght){
|
module egg(width, length){
|
||||||
rotate_extrude()
|
rotate_extrude()
|
||||||
difference(){
|
difference(){
|
||||||
egg_outline(width, lenght);
|
egg_outline(width, length);
|
||||||
translate([-lenght, 0, 0]) cube(2*lenght, center=true);
|
translate([-length, 0, 0]) cube(2*length, center=true);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue