I was trying to built a 3d plot to represent a parametrized curve in space using Maple, something like (x(t), y(t), t). I could! But the thing is that I need it as an image, so the reader will not be able to rotate this result as I am now, so I need to choice a favorable angle, and I just can't. I was wondering if it's possible to insert any type of a background like this one we usually make it appear when using Python:
or maybe a color varying over the curve as t changes.
Here's what I tried:
with(DEtools):
DEplot3d({diff(x(t),t) = y(t),diff(y(t),t) = (1 - x(t)^2)*y(t) - x(t)},[x(t),y(t)],t=0..15,[[x(0)=0,y(0)=0.1]],stepsize=.1,x=-2.5..2.5,linecolor=black,axes=framed,thickness=1,obsrange=FALSE);
And this is the best manner I could adjust it:
You could construct such a mesh of gray lines.
You could also add some perspective to the 3D plot, to give a sense of depth.
You could also color the curve is some way that conveyed distance or depth. (Below, I color it with a gradient in the first axis's dimension.)