En la ayuda de Maxscript busca por section y encontraras que viene un ejemplo que crea Splines con secciones de la geometría cada x unidades en determinado eje, con esto y un modificador extrude lo tienes.
Código:
Meshselected = sphere () - Object todo create contours of.
Minz = meshselected, min, z - Get min and max z positions.
Maxz = meshselected, max.z.
Numlevels = 10 - The number of contours.
Delta = (maxz - Minz) / (numlevels + 1) - The number of steps.
For currentz = minz todo maxz by delta do - Start loop.
S = section pos:[0, 0, currentz] - Create section.
Max views redraw - This line is neded todo get around the problem.
Converttosplineshape s - Convert section todo splineshape.
S, renderable = true - Set todo renderable).