I am currently working on creating a 3D model of a Lorenz system. I want a result fairly similar to the following picture from the Internet, minus the stand:
To accomplish this, I created a C++ program that outputs an OBJ where the lines of the Lorenz system are represented as lines in the OBJ file (via the l command). Then, I was going to apply the skin modifier to this OBJ in Blender to make it solid, as in the picture. When I do this, however, there are two issues. Firstly, the solid lines resemble extruded squares more than the cylinders that I prefer. Secondly, when the Lorentz system wraps back near to its self, there is overlap between the pseudo-extruded-squares. While this overlap is in and of itself not an issue, it creates mesh intersections which are highly problematic for any use of this mesh (ie. rendering, 3D printing):
How can I use Blender to transform the line OBJ file into a model with solid cylindrical lines and correct mesh overlap (similar to a union operator)?


