I have a vector field, Pdt1 I am trying to use as the texture for a ParametricPlot3D plot.
When I plot the vector field with the code
VF1 = StreamPlot[Pdt1[u, v], {u, -a, a}, {v, -a, a},
StreamStyle -> {Red, Thick}, StreamColorFunction -> None,
Frame -> None, ImageSize -> Large]
It returns the image
as expected. All well and good. When I pass this plot as a texture to ParametricPlot3D as done with the code
Show[
ParametricPlot3D[{x[u, v], y[u, v], z[u, v]}, {u, -a, a}, {v, -a, a},
PlotStyle -> {Texture[VF1]},
PlotRange -> Full, Boxed -> False, Axes -> False,
ImageSize -> Large
]
]
What is returned is the plot but without the red or thick styling which was given in the definition of VF1;
How to I get the styling of VF1 to carry over to the parametric plot?





PlotRangePadding -> None, too. $\endgroup$