Skip to content

Commit 9486ea2

Browse files
committed
Fixed some erroneous merges in threading.scad
1 parent 45d9244 commit 9486ea2

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

threading.scad

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ use <math.scad>
7676
// trapezoidal_threaded_rod(d=10, l=40, pitch=3, thread_angle=15, left_handed=true, starts=3, $fn=36);
7777
// trapezoidal_threaded_rod(d=25, l=40, pitch=10, thread_depth=8/3, thread_angle=50, starts=4, center=false, $fa=2, $fs=2);
7878
// trapezoidal_threaded_rod(d=50, l=35, pitch=8, thread_angle=30, starts=3, bevel=true);
79-
// trapezoidal_threaded_rod(l=25, d=10, pitch=2, thread_angle=15, starts=3, $fa=1, $fs=1, orient=ORIENT_X, anchor=UP);
79+
// trapezoidal_threaded_rod(l=25, d=10, pitch=2, thread_angle=15, starts=3, $fa=1, $fs=1, orient=ORIENT_X, align=V_UP);
8080
module trapezoidal_threaded_rod(
8181
d=10,
8282
l=100,
@@ -262,7 +262,7 @@ module trapezoidal_threaded_rod(
262262
// orient = Orientation of the nut. Use the `ORIENT_` constants from `constants.scad`. Default: `ORIENT_Z`.
263263
// align = Alignment of the nut. Use the `V_` constants from `constants.scad`. Default: `V_CENTER`.
264264
// Examples(Med):
265-
// trapezoidal_threaded_nut(od=16, id=8, h=8, pitch=2, slop=0.2, anchor=UP);
265+
// trapezoidal_threaded_nut(od=16, id=8, h=8, pitch=2, slop=0.2, align=V_UP);
266266
// trapezoidal_threaded_nut(od=17.4, id=10, h=10, pitch=2, slop=0.2, left_handed=true);
267267
// trapezoidal_threaded_nut(od=17.4, id=10, h=10, pitch=2, thread_angle=15, starts=3, $fa=1, $fs=1);
268268
module trapezoidal_threaded_nut(
@@ -482,14 +482,14 @@ module buttress_threaded_rod(
482482
// bevel = if true, bevel the thread ends. Default: false
483483
// slop = printer slop calibration to allow for tight fitting of parts. default=0.2
484484
// orient = Orientation of the nut. Use the `ORIENT_` constants from `constants.scad`. Default: `ORIENT_Z`.
485-
// anchor = Alignment of the nut. Use the constants from `constants.scad`. Default: `CENTER`.
485+
// align = Alignment of the nit. Use the `V_` constants from `constants.scad`. Default: `V_CENTER`.
486486
// Examples:
487487
// buttress_threaded_nut(od=16, id=8, h=8, pitch=1.25, left_handed=true, slop=0.2, $fa=1, $fs=1);
488488
module buttress_threaded_nut(
489489
od=16, id=10, h=10,
490490
pitch=2, left_handed=false,
491491
bevel=false, slop=undef,
492-
orient=ORIENT_Z, anchor=CENTER
492+
orient=ORIENT_Z, align=V_CENTER
493493
) {
494494
depth = pitch * 3/4;
495495
profile = [

0 commit comments

Comments
 (0)