Re: plotting a curve in 3D from data
- To: mathgroup at smc.vnet.net
 - Subject: [mg116322] Re: plotting a curve in 3D from data
 - From: David Skulsky <edskulsky at gmail.com>
 - Date: Fri, 11 Feb 2011 04:13:44 -0500 (EST)
 - Reply-to: comp.soft-sys.math.mathematica at googlegroups.com
 
I'd be surprised if there wasn't a more elegant way to do what you ask, but you can always use primitives:
Graphics3D[ Line[Table[{t, Cos[t + Pi/2], Sin[t + Pi/2]}, {t, 0, 5 Pi, .2}]]]
David