RE: Thicker line in ParametricPlot3D?
- To: mathgroup at smc.vnet.net
- Subject: [mg45181] RE: [mg45174] Thicker line in ParametricPlot3D?
- From: "Florian Jaccard" <florian.jaccard at eiaj.ch>
- Date: Sat, 20 Dec 2003 05:55:45 -0500 (EST)
- Reply-to: <florian.jaccard at eiaj.ch>
- Sender: owner-wri-mathgroup at wolfram.com
Yes, there is : ParametricPlot3D[{t, t^2, t^3,Thickness[0.02]}, {t, 0, 1}] Meilleures salutations Florian Jaccard -----Message d'origine----- De : Sampo Smolander [mailto:sampo.smolander+newsnspam at helsinki.fi] Envoyé : ven., 19. décembre 2003 12:58 À : mathgroup at smc.vnet.net Objet : [mg45174] Thicker line in ParametricPlot3D? Is there a "normal" way to adjust the line thickness in ParametricPlot3D? In mere ParametricPlot, I can give the line thickness in options: ParametricPlot[{t, t^2}, {t, 0, 1}, PlotStyle -> Thickness[0.02]] In 3D, this is almost the same: ParametricPlot3D[{t, t^2, t^3}, {t, 0, 1}] except that ParametricPlot3D does not allow the option PlotStyle (gives an error for unknown option). I can adjust the line thickness by doing it like this: fig = ParametricPlot3D[{t, t^2, t^3}, {t, 0, 1}]; fig[[1]] = Prepend[fig[[1]], Thickness[0.02]]; Show[fig] I'm just being curious, is there any easier way?