1
0
mirror of https://github.com/nophead/NopSCADlib.git synced 2025-08-30 10:39:58 +02:00

Removed trailing comma in let() for compatibility with last release.

This commit is contained in:
Chris Palmer
2024-10-02 08:41:41 +01:00
parent 8951b8b60e
commit afc50ffe5d
2 changed files with 2 additions and 3 deletions

View File

@@ -577,6 +577,7 @@ module rd_coil(type, value, pitch = undef) { //! Draw the specified vertical coi
function sigmoid(x) = 1 / (1 + exp(-x));
z = end + size[3] / 2;
h = size[3] - wire_d;
turns = rd_coil_turns(type);
color(rd_coil_colour(type)) {
cylinder(d = size.y, h = size.z);
@@ -585,7 +586,6 @@ module rd_coil(type, value, pitch = undef) { //! Draw the specified vertical coi
translate_z(z)
cylinder(d = size.x, h = end);
}
turns = rd_coil_turns(type);
color(silver)
for(side = [-1, 1])