Re: ParametricPlot3D between two curves
- To: mathgroup at smc.vnet.net
- Subject: [mg77762] Re: ParametricPlot3D between two curves
- From: chuck009 <dmilioto at comcast.com>
- Date: Sat, 16 Jun 2007 03:28:27 -0400 (EDT)
Hey Daniel. Thanks. I plan to upgrade sometime this year. Your example is just for a parametric plot in the plane. I wonder if there are equivalent constructs for ParametricPlot3D? I'll check out the documentation on- line regarding RegionFunction. > > Hi, > > if you have version 6, lock up "RegionFunction" in > the manual. Here is > > an example: > > fun1[x_]=x^2; > > fun2[x_]=2 x^2; > > ParametricPlot[{Sin[u > > v],Cos[u]},{u,0,1},{v,0,1},RegionFunction->Function[{x > ,y},fun1[x]<y<fun2[x]]] > > hope this helps, Daniel