Hello
How might I apply Scale[] to a RevolutionPlot3D[] and a ParametricPlot3D? e.g. plots,
RevolutionPlot3D[{2 + Cos[t], Sin[t]}, {t, 0, 2 Pi}]
ParametricPlot3D[{Cos[u], Cos[u] - Cos[v], Sin[v]}, {u, 3, 2 \[Pi]}, {v, -2, \[Pi]}]
{scaleX, scaleY, scaleZ} = {1, 1, 1};
Graphics3D[{Scale[
Sphere[{0, 0, 0}, 0.333], {scaleX, scaleY, scaleZ}]}, PlotRange -> {{-1, 1}, {-1, 1}, {-1, 1}}]
Any help appreciated!
Greg