MathGroup Archive 2003

[Date Index] [Thread Index] [Author Index]

Search the Archive

Re: How to change thickness of curves drawn by ParametricPlot3D?

  • To: mathgroup at smc.vnet.net
  • Subject: [mg39403] Re: [mg39385] How to change thickness of curves drawn by ParametricPlot3D?
  • From: BobHanlon at aol.com
  • Date: Fri, 14 Feb 2003 03:18:25 -0500 (EST)
  • Sender: owner-wri-mathgroup at wolfram.com

In a message dated 2/13/03 5:23:35 AM, liu at vtaix.cc.vt.edu writes:


> 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?
> 

Needs["Graphics`ParametricPlot3D`"];


ParametricPlot3D[{Cos[t],Sin[t],1,
 
       {AbsoluteThickness[2], RGBColor[1, 0, 0]}},

     {t,0,2Pi}];



Bob Hanlon




  • Prev by Date: Re: How to change thickness of curves drawn by ParametricPlot3D?
  • Next by Date: Re: Does Mathematica run on Mandrake Linux?
  • Previous by thread: Re: How to change thickness of curves drawn by ParametricPlot3D?
  • Next by thread: Re: How to change thickness of curves drawn by ParametricPlot3D?