0

enter image description here

That is what l want,but l can only use Show,Plot3D to get something just like this

enter image description here

What should l do?Thanks~

Ben
  • 15
  • 4

1 Answers1

4

Try this:

 Show[{
  Plot3D[x^2, {x, -2, 2}, {y, -2, 2}],
  ParametricPlot3D[{x, 0, x^2 + 0.15}, {x, -2, 1.9}, 
    PlotStyle -> Arrowheads[0.07]] /. Line -> Arrow

    }]

yielding

enter image description here

Have fun!

Alexei Boulbitch
  • 39,397
  • 2
  • 47
  • 96