Re: Dashed space curve
- To: mathgroup at smc.vnet.net
- Subject: [mg47182] Re: Dashed space curve
- From: bobhanlon at aol.com (Bob Hanlon)
- Date: Mon, 29 Mar 2004 04:22:29 -0500 (EST)
- References: <c45n3g$s0t$1@smc.vnet.net>
- Sender: owner-wri-mathgroup at wolfram.com
The fourth parameter that the documentation states is used to shade the plot
also is used to handle dashing
Needs["Graphics`Colors`"];
ParametricPlot3D[{Cos[5t],Sin[3t],Sin[t],
{Red, AbsoluteDashing[{5,5 }]}},
{t,0,2Pi}];
Bob Hanlon
In article <c45n3g$s0t$1 at smc.vnet.net>, mika_lists at yahoo.com (Michael) wrote:
<< I would like to draw a dashed space curve (using ParametricPlot3D).
How can I achieve that?