mirror of
https://github.com/BelfrySCAD/BOSL2.git
synced 2024-12-29 16:29:40 +00:00
Fixed missing commas
This commit is contained in:
parent
57c1ac52e7
commit
da51affd52
2 changed files with 4 additions and 4 deletions
|
@ -304,7 +304,7 @@ module gear(
|
|||
twist = undef,
|
||||
slices = undef,
|
||||
interior = false,
|
||||
anchor = CENTER
|
||||
anchor = CENTER,
|
||||
spin = 0,
|
||||
orient = UP
|
||||
) {
|
||||
|
@ -380,7 +380,7 @@ module rack(
|
|||
pressure_angle = 28,
|
||||
backlash = 0.0,
|
||||
clearance = undef,
|
||||
anchor = CENTER
|
||||
anchor = CENTER,
|
||||
spin = 0,
|
||||
orient = UP
|
||||
) {
|
||||
|
|
|
@ -382,7 +382,7 @@ function get_metric_nut_thickness(size) = lookup(size, [
|
|||
// screw(screwsize=3,screwlen=10,headsize=6,headlen=3)
|
||||
// show_anchors(5, custom=false);
|
||||
// Example(FlatSpin): Standard Anchors
|
||||
// transparent()
|
||||
// show_internal_anchors()
|
||||
// screw(screwsize=3,screwlen=10,headsize=6,headlen=3)
|
||||
// show_anchors(5, std=false);
|
||||
module screw(
|
||||
|
@ -473,7 +473,7 @@ module screw(
|
|||
// metric_bolt(headtype="oval", size=10, l=15, shank=5, details=true, phillips="#2")
|
||||
// show_anchors(5, custom=false);
|
||||
// Example(FlatSpin): Custom Anchors
|
||||
// transparent(0.125)
|
||||
// show_internal_anchors(0.125)
|
||||
// metric_bolt(headtype="oval", size=10, l=15, shank=5, details=true, phillips="#2")
|
||||
// show_anchors(5, std=false);
|
||||
module metric_bolt(
|
||||
|
|
Loading…
Reference in a new issue