 
 
 
 
 
 
Re: How to do 3D plot of vertical planes?
- To: mathgroup@smc.vnet.net
- Subject: [mg12271] Re: How to do 3D plot of vertical planes?
- From: Bill Bertram <wkb@ansto.gov.au>
- Date: Tue, 5 May 1998 03:30:07 -0400
- Organization: ANSTO
- References: <6ibs1l$t6d@smc.vnet.net>
Loren Gibson wrote:
> 
> Can anyone suggest to me a method for plotting a surface which is a
> vertical plane, such as x=5, x+y=0, the xz plane, etc.? It appears to
> me that most of the typical methods of plotting 3-D surfaces don't lend
> themselves well to vertical planes. TIA.
You could try ParamericPlot3D. I don't know if it will do everything you
want, but for the simple examples you have given it seems OK. For
example, the x-z plane can be drawn with,
        sxz=ParametricPlot3D[{u,0,v},{u,-5,5},{v,-5,5}];
and the plane x+y==0 is simply,
        ss=ParametricPlot3D[{-u,u,v},{u,-5,5},{v,-5,5}];
You can then combine these using,  Show[sxz,ss];
Hope this helps,
    Bill

