3

Are there any option to plot the typical and classic axis instead de "box axis" that is the default option in Mathematica?

What I would like is any similar to the axis in red in the following image.

ParametricPlot3D[{2 u, 2 v, u - v}, {u, -16, 16}, {v, -16, 16}, 
 PlotRange -> {-9, 9}, PerformanceGoal -> "Quality", 
 PlotStyle -> {Directive[Yellow, Opacity[0.74]]},
 AxesLabel -> {x, y, z}, LabelStyle -> {20, Bold}, ImageSize -> Large,
  ViewPoint -> {11, 2, 3}, AxesStyle -> Thick
 ]

enter image description here

Mika Ike
  • 3,241
  • 1
  • 23
  • 38

1 Answers1

9

Use Boxed->False and AxesOrigin->{0,0,0}:

ParametricPlot3D[{2 u, 2 v, u - v}, {u, -16, 16}, {v, -16, 16}, 
 PlotRange -> {-9, 9}, PlotStyle -> Directive[Yellow, Opacity[0.74]],
 AxesLabel -> {x, y, z},
 LabelStyle -> {20, Bold},
 ImageSize -> Large,
 ViewPoint -> {11, 2, 3},
 AxesStyle -> Thick,
 Boxed -> False,
 AxesOrigin -> {0, 0, 0}
 ]
glS
  • 7,623
  • 1
  • 21
  • 61
  • thank you and excuse me for not posting the code example. – Mika Ike Dec 10 '15 at 10:08
  • is easy put the name of the axis in other point?, avoiding be in the middle. for example close to the end of the visible axis, similar to the image of the example in red. – Mika Ike Dec 10 '15 at 11:05
  • 1
    @MikaIke see http://mathematica.stackexchange.com/q/31764/27539 and http://mathematica.stackexchange.com/q/26979/27539 and links therein – glS Dec 10 '15 at 11:08