Re: parametric plot and filling
- To: mathgroup at smc.vnet.net
- Subject: [mg131549] Re: parametric plot and filling
- From: Helen Read <readhpr at gmail.com>
- Date: Fri, 23 Aug 2013 05:32:54 -0400 (EDT)
- Delivered-to: l-mathgroup@mail-archive0.wolfram.com
- Delivered-to: l-mathgroup@wolfram.com
- Delivered-to: mathgroup-outx@smc.vnet.net
- Delivered-to: mathgroup-newsendx@smc.vnet.net
- References: <kuvkbl$mp9$1@smc.vnet.net>
Use a second parameter. For example, ParametricPlot[{{2 t, -m t^2}, {6 + 2 t, -m t^2}}, {t, -2, 2}, {m, 0, 1}, Axes -> {True, False}, Ticks -> None, PlotStyle -> Green, BoundaryStyle -> {Thick, Cyan}, Mesh -> False, Frame -> False] ParametricPlot[{r Cos[t], r Sin[t]}, {t, 0, 2 \[Pi]}, {r, 3, 4}, Mesh -> False, PlotStyle -> Red, BoundaryStyle -> None, Axes -> False, Frame -> False] Helen Read University of Vermont On 8/20/2013 7:36 AM, Francisco Gutierrez wrote: > Dear group: > > DoesParametricPlot admit the Filling option? Seems it not? How then to perform it? > Lokk at the following simple example: > > ParametricPlot[{{2 t,-t^2},{6+ 2 t,-t^2}}, {t,-2,2},Axes->{True,False}, Ticks->None, PlotStyle->{{Thick,Cyan},{Thick,Green}}] > > > > The if I introduce the Filling command inside PlotStyle nothing happens, and outside it produces an error. Any ideas? > francisco >
- Follow-Ups:
- Re: parametric plot and filling
- From: Francisco Gutierrez <fgutiers2002@yahoo.com>
- Re: parametric plot and filling