Re: 3D graphs/coord. axes
- To: mathgroup at smc.vnet.net
- Subject: [mg12666] Re: 3D graphs/coord. axes
- From: paulh (P.J. Hinton)
- Date: Mon, 1 Jun 1998 23:16:40 -0400
- Organization: Wolfram Research, Inc.
- References: <6kpvmg$sji@smc.vnet.net>
- Sender: owner-wri-mathgroup at wolfram.com
In article <6kpvmg$sji at smc.vnet.net>, "Russell.E.Goodman" <Russell.E.Goodman-1 at ou.edu> writes: |> I'm plotting alot of 3D graphs for my class to look at but I don't want |> a box around the graph, I want to have the coordinate axes in their |> typical position. i.e. like when you draw the x-y-z axes on a |> chalkboard, all eminating from the same point in 3-space. Any help?? You probably need to use the SurfaceGraphics options AxesEdge, Boxed, and ViewPoint to get the effect that you're looking for. Here is an example that you cann use as a template: Plot3D[Sin[x y],{x,0,\[Pi]},{y,0,\[Pi]}, AxesEdge -> {{-1,-1},{-1,-1},{-1,-1}}, Boxed -> False, ViewPoint -> {2.971, 1.419, 2}]; Much of this is documented in Section 2.9.13 of _The Mathematica Book_ (Third Ed.). -- P.J. Hinton Mathematica Programming Group paulh at wolfram.com Wolfram Research, Inc. http://www.wolfram.com/~paulh/