Re: color space curve
- To: mathgroup at smc.vnet.net
- Subject: [mg8297] Re: color space curve
- From: vvs124 at rsphy1.anu.edu.au (Victoria Steblina)
- Date: Sun, 24 Aug 1997 04:46:40 -0400
- Organization: Australian National University
- Sender: owner-wri-mathgroup at wolfram.com
In article <5t3gjl$61a at smc.vnet.net> Eduardo Arantes Nogueira <eanog at TURING.UNICAMP.BR> writes: > I want to plot a three-dimensional space curve (with ParametricPlot3D) > but in color and according to X and Y values (not Z values), > to give the sense of depth. Try adding the fourth "color variable", e.g. (local) In[24]:= ParametricPlot3D[{Sin[t]^2, Sin[t]^2, t, Hue[Sin[t]^2]}, {t, 0, Pi}, AspectRatio -> 1.0] Cheers, Victoria