mirror of
https://github.com/BelfrySCAD/BOSL2.git
synced 2025-01-01 09:49:45 +00:00
remove comma
This commit is contained in:
parent
da261588b7
commit
41963419ef
2 changed files with 3 additions and 3 deletions
|
@ -1254,7 +1254,7 @@ module default_tag(tag,do_tag=true)
|
||||||
// Note that if you directly set the `$tag` variable then tag scoping will not work correctly.
|
// Note that if you directly set the `$tag` variable then tag scoping will not work correctly.
|
||||||
// Usually you will want to use tag_scope in the first child of {{attachable()}} to isolate the geometry
|
// Usually you will want to use tag_scope in the first child of {{attachable()}} to isolate the geometry
|
||||||
// of your attachable object. If you put it **outside** the {{attachable()}} call, then it will
|
// of your attachable object. If you put it **outside** the {{attachable()}} call, then it will
|
||||||
// set a scope that also applies to the children passed to your attachable object.
|
// set a scope that also applies to the children passed to your attachable object, which is probably not what you want.
|
||||||
// Side Effects:
|
// Side Effects:
|
||||||
// `$tag_prefix` is set to the value of `scope=` if given, otherwise is set to a random string.
|
// `$tag_prefix` is set to the value of `scope=` if given, otherwise is set to a random string.
|
||||||
// Example(3D,NoAxes): In this example, tag_scope() is required for things to work correctly.
|
// Example(3D,NoAxes): In this example, tag_scope() is required for things to work correctly.
|
||||||
|
@ -1290,7 +1290,7 @@ module default_tag(tag,do_tag=true)
|
||||||
// myring()
|
// myring()
|
||||||
// color_this("green") cyl(d=20, l=61)
|
// color_this("green") cyl(d=20, l=61)
|
||||||
// tag("remove") color_this("yellow") cyl(d=10, l=65);
|
// tag("remove") color_this("yellow") cyl(d=10, l=65);
|
||||||
// Example(3D,NoAxes): If the tag_scope() is outside the attachable() call then something different goes wrong:
|
// Example(3D,NoAxes): If the tag_scope() is outside the attachable() call then the scope applies to the children and something different goes wrong:
|
||||||
// module myring(){
|
// module myring(){
|
||||||
// tag_scope()
|
// tag_scope()
|
||||||
// attachable(anchor=CENTER, spin=0, d=60, l=60) {
|
// attachable(anchor=CENTER, spin=0, d=60, l=60) {
|
||||||
|
|
|
@ -258,7 +258,7 @@ function nurbs_curve(control,degree,splinesteps,u, mult,weights,type="clamped",
|
||||||
)
|
)
|
||||||
uniform?
|
uniform?
|
||||||
let(
|
let(
|
||||||
msum = cumsum(mult),
|
msum = cumsum(mult)
|
||||||
)
|
)
|
||||||
[for(uval=adjusted_u)
|
[for(uval=adjusted_u)
|
||||||
let(
|
let(
|
||||||
|
|
Loading…
Reference in a new issue