Hello Bob
There is a Tapered.js script that exist (installed with CamBam) that allow to generate tapered path. With using it multiple time and changing the diameter you can generate multiple toolpath as on the picture.
To do the one on the picture, I generate first a path with:
var radius_1 : double = 25; // Start Radius
var radius_2 : double = 20; // End Radius
then another with:
var radius_1 : double = 24; // Start Radius
var radius_2 : double = 19; // End Radius
var depth_increment : double = 3; is the pitch
Unfortunately seems that CB V1.0 no longer support JScript, but it works with the 0.98 if you still have it installed.
Maybe someone can convert it to python so it will works on V1.0 64bits ; if nobody can do it, I can try to convert it to a plugin ....
If you don't want the move to center at the bottom, remove the following lines:
// move to center
p.Add(0,0,z);
The script do not take tool diameter in account, so you must give the diameter of the toolpaths, not of the hole.
I have a try with the "profil to helix" plugin, but it compensate for ballnose and we do not get the right toolpath ; if we try with a tool diameter = 0, this do not work.(tool diam must always be > to depth increment)
++
David