Given a series of 3D points, I want to generate a 3D tube with any specified radius. To create many such tubes, I need to do this in Python.
My current plan is to first create a Bezier curve from these coordinates with the method mentioned here and then create a 3D tube from this Bezier curve using this method.
Is this the best way of doing this? If not, what is a better way?