When using Manipulate to graph a simple surface (sum of 2 sine waves) with Plot3D, setting PerformanceGoal->"Quality" makes it take about 1/3 second to render, while "Speed" sets it at such a low resolution that you can't even see the general shape of the plot.
Is there a way to set the render quality to something in-between or to adjust how much rendering it does when set to "Speed"?
k = 1;
range = 20;
Manipulate[{Show[
Plot3D[
Sin[k*(Sqrt[(x - p1[[1]])^2 + (y - p1[[2]])^2] - t)],
{x, -range, range}, {y, -range, range},
BoxRatios -> Automatic,
ColorFunction -> "Rainbow"
]
]},
{t, 0, 5},
{p1, {-range, -range}, {range, range}}
]


Manipulate[ Plot3D[Sin[3 x + 4 y] + Sin[4 x^2 - y^2], {x, y} \[Element] Rectangle[{0, 0}, {t, t}]], {{t, 1}, 0.1, 3} ], but right now you have us guessing at your problem. You should share your code so we can provide more specific help. – MarcoB Mar 22 '16 at 03:32PlotPointsabove the default. It will be system dependent, but I get reasonable results on my system by settingPlotPoints -> 50. – m_goldberg Mar 24 '16 at 05:41PlotPoints->50and add the optionMesh->None. The result is quite speedy. One of you two should post a (self)answer now. PS NeitherShownor the curly braces around it are necessary. Just leavePlot3Das the first argument toManipulate. – LLlAMnYP Mar 24 '16 at 07:59