mirror of
https://github.com/BelfrySCAD/BOSL2.git
synced 2025-01-01 17:59:41 +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,
|
twist = undef,
|
||||||
slices = undef,
|
slices = undef,
|
||||||
interior = false,
|
interior = false,
|
||||||
anchor = CENTER
|
anchor = CENTER,
|
||||||
spin = 0,
|
spin = 0,
|
||||||
orient = UP
|
orient = UP
|
||||||
) {
|
) {
|
||||||
|
@ -380,7 +380,7 @@ module rack(
|
||||||
pressure_angle = 28,
|
pressure_angle = 28,
|
||||||
backlash = 0.0,
|
backlash = 0.0,
|
||||||
clearance = undef,
|
clearance = undef,
|
||||||
anchor = CENTER
|
anchor = CENTER,
|
||||||
spin = 0,
|
spin = 0,
|
||||||
orient = UP
|
orient = UP
|
||||||
) {
|
) {
|
||||||
|
|
|
@ -382,7 +382,7 @@ function get_metric_nut_thickness(size) = lookup(size, [
|
||||||
// screw(screwsize=3,screwlen=10,headsize=6,headlen=3)
|
// screw(screwsize=3,screwlen=10,headsize=6,headlen=3)
|
||||||
// show_anchors(5, custom=false);
|
// show_anchors(5, custom=false);
|
||||||
// Example(FlatSpin): Standard Anchors
|
// Example(FlatSpin): Standard Anchors
|
||||||
// transparent()
|
// show_internal_anchors()
|
||||||
// screw(screwsize=3,screwlen=10,headsize=6,headlen=3)
|
// screw(screwsize=3,screwlen=10,headsize=6,headlen=3)
|
||||||
// show_anchors(5, std=false);
|
// show_anchors(5, std=false);
|
||||||
module screw(
|
module screw(
|
||||||
|
@ -473,7 +473,7 @@ module screw(
|
||||||
// metric_bolt(headtype="oval", size=10, l=15, shank=5, details=true, phillips="#2")
|
// metric_bolt(headtype="oval", size=10, l=15, shank=5, details=true, phillips="#2")
|
||||||
// show_anchors(5, custom=false);
|
// show_anchors(5, custom=false);
|
||||||
// Example(FlatSpin): Custom Anchors
|
// 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")
|
// metric_bolt(headtype="oval", size=10, l=15, shank=5, details=true, phillips="#2")
|
||||||
// show_anchors(5, std=false);
|
// show_anchors(5, std=false);
|
||||||
module metric_bolt(
|
module metric_bolt(
|
||||||
|
|
Loading…
Reference in a new issue