RE: vertical lines
- To: mathgroup at smc.vnet.net
- Subject: [mg25981] RE: [mg25970] vertical lines
- From: "David Park" <djmp at earthlink.net>
- Date: Wed, 15 Nov 2000 02:09:36 -0500 (EST)
- Sender: owner-wri-mathgroup at wolfram.com
Vitalij,
Here are three methods for drawing a vertical line from {3,-3} to {3,3}.
Show[Graphics[{Line[{{3, -3}, {3, 3}}]}], Axes -> True,
PlotRange -> {{-5, 5}, {-3, 3}}];
ParametricPlot[{3, y}, {y, -3, 3}, PlotRange -> {{-5, 5}, {-3, 3}}];
Needs["Graphics`ImplicitPlot`"]
ImplicitPlot[x == 3, {x, -5, 5}, {y, -3, 3},
AxesOrigin -> {0, 0}];
David Park
djmp at earthlink.net
http://home.earthlink.net/~djmp/
> -----Original Message-----
> From: Vitalij K. Lysoff [mailto:lysov at paloma.spbu.ru]
To: mathgroup at smc.vnet.net
>
> Hi, All!
> How I can draw the vertical line in 2-dimensional?
>
>