Re: parametric plot and filling
- To: mathgroup at smc.vnet.net
- Subject: [mg131534] Re: parametric plot and filling
- From: Bob Hanlon <hanlonr357 at gmail.com>
- Date: Wed, 21 Aug 2013 01:58:35 -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: <20130820113651.16A216A17@smc.vnet.net>
I would try to convert it to a standard plot.
ParametricPlot[
{{2 t, -t^2}, {6 + 2 t, -t^2}},
{t, -2, 2},
Axes -> {True, False},
Ticks -> None,
PlotStyle -> {{Thick, Cyan}, {Thick, Green}}]
Plot[
Evaluate[y /. {
Solve[Thread[
{x, y} == {2 t, -t^2}], {y, t}],
Solve[Thread[
{x, y} == {6 + 2 t, -t^2}], {y, t}]}],
{x, -4, 10},
Axes -> {True, False},
Ticks -> None,
PlotStyle -> {{Thick, Cyan}, {Thick, Green}},
PlotRange -> {-4, 0},
AspectRatio -> 0.285714,
Filling -> -4]
Bob Hanlon
On Tue, Aug 20, 2013 at 7:36 AM, Francisco Gutierrez <fgutiers2002 at yahoo.com
> 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
>
- References:
- parametric plot and filling
- From: Francisco Gutierrez <fgutiers2002@yahoo.com>
- parametric plot and filling