I suspect a simple wooden toy "lead screw" was made by advancing a cylindrical rotary cutting tool ( Cylindrical End Mill Cutter) along the surface of the rotating wooden dowel (base cylinder), resulting in a helical cut (the axes of the cylinders are orthogonal (skew).
Videos of the manufacturing process close to what I suspect:
- https://youtu.be/5U9lJAgU1oE?t=31 (but: spherical cutter. radial, not tangent end mill)
- https://youtu.be/y5DOQWiexOQ?t=314 (cutter radial)
- https://youtu.be/pbaRRsG3BN4?t=9 (not radial, but "tilted")
I have tried to visualise/emulate the resulting geometry using multiple difference operations for cylinder primitives in (Open)JSCAD (see code at end of post) and adjusted the view manually:
What is the equivalent (elliptical?) shape that is the cross-section of the helical path?
And: what is the contact surface/line/point of another, slightly smaller cylinder that is used as "lead screw nut" (having the same orientation as the cutting cylinder, i.e. orthogonal to the base cylinder) - a point contact on one of the helical edges?
Code for JSCAD
function main () {
let main = cylinder({r: 3, h:10, center: true, fn: 64 });
for (let i=0; i<36; i++) {
let cut = cylinder({r: 0.2, h:10, center: true});
cut = translate([0,-3,0],cut);
cut = rotate([0,90,i*3],cut);
cut = translate([0,0,i*0.1],cut);
main = difference(main, cut);
}
return main;
}
I think the underlying question may be about the surface created by a straight line moved along a spiral ( or helix):
(created with Blender: a mesh edge with Screw modifier)
Or the surface created by a helix that has been rotated (spin):
The cross-section of the "cutting" cylinder (End mill) is a circle of course, which is what an infinite number of cuts "converge" to (a cylinder with zero length).
Then the cross-section along the helix should be an ellipse (intersection of the hypothetical "cutting" cylinder (End mill cutter) and the plane orthogonal to the helix).
It's not the same as moving a circle along the helix; to illustrate, I've reduced the cylinder's length:

My "straight line" theory does not apply either, I think these "lines" might be helices created by the intersection of the translated and rotated "cutting" cylinders.
So it seems this might be much more involved than I anticipated -- please don't spend too much time on this on my account. I was just curious to see whether the "cut" could be better created in 3D by "lofting" the equivalent cross-section along a helix.






