Skip to content

Commit b0d8297

Browse files
bugfix
1 parent ff3dbf5 commit b0d8297

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

joiners.scad

+2-2
Original file line numberDiff line numberDiff line change
@@ -664,7 +664,7 @@ module dovetail(gender, width, height, slide, h, w, angle, slope, thickness, tap
664664

665665
// Need taper angle for computing width adjustment, but not used elsewhere
666666
taper_ang = is_def(taper) ? taper
667-
: is_def(back_width) ? atan((back_width-width)/2/slide)
667+
: is_def(back_width) ? atan((back_width-w)/2/slide)
668668
: 0;
669669
// This is the adjustment factor for width to grow in the direction normal to the dovetail face
670670
wfactor = sqrt( 1/slope^2 + 1/cos(taper_ang)^2 );
@@ -708,7 +708,7 @@ module dovetail(gender, width, height, slide, h, w, angle, slope, thickness, tap
708708

709709
bigenough = all_nonnegative(column(smallend_half,0)) && all_nonnegative(column(bigend_points,0));
710710

711-
assert(bigenough, "Width of dovetail is not large enough for its geometry (angle and taper");
711+
assert(bigenough, "Width (or back_width) of dovetail is not large enough for its geometry (angle and taper");
712712

713713
//adjustment = $overlap * (gender == "male" ? -1 : 1); // Adjustment for default overlap in attach()
714714
adjustment = 0; // Default overlap is assumed to be zero

0 commit comments

Comments
 (0)