Re: How to change thickness of curves drawn by ParametricPlot3D?
- To: mathgroup at smc.vnet.net
- Subject: [mg39398] Re: [mg39385] How to change thickness of curves drawn by ParametricPlot3D?
- From: Jan Mangaldan <hokenjan at yahoo.com>
- Date: Fri, 14 Feb 2003 03:17:55 -0500 (EST)
- Sender: owner-wri-mathgroup at wolfram.com
Yes you can.
Try this:
In[1]:= ParametricPlot3D[{Cos[t], Sin[t], 1}, {t,0, 2Pi}, PlotStyle->AbsoluteThickness[2]];
If you want color to go along with it:
In[2]:= Needs["Graphics`Colors`"]
In[3]:= ParametricPlot3D[{Cos[t], Sin[t], 1}, {t,0, 2Pi}, PlotStyle->{{Turquoise, AbsoluteThickness[2]}}];
Jan M. (^_^)
Xiangdong Liu <liu at vtaix.cc.vt.edu> wrote: It must be easy but how do I add line/curve thickness in
ParametricPlot3D as in
ParametericPlot3D[{Cos[t], Sin[t], 1}, {t,0, 2Pi}];
Can AbsoluteThickness[2] be added to the above line somehow,
somewhere?
Thanks,
Xiangdong Liu