| Join the points of the same list with a thicker line. |
In[1]:=
<<Graphics`Graphics3D`
In[2]:=
lpts = Table[{t Cos[t], t Sin[t], t}, {t, 0, 4Pi, Pi/20}];
In[3]:=
scl = ScatterPlot3D[lpts, PlotJoined -> True, PlotStyle -> Thickness[0.01]]
In[4]:=
JavaView[scl]
|