I define a couple ParametricPlot3D planes like so;
xyPlane = ParametricPlot3D[{0, y, z}, {y, -5, 5}, {z, -5, 5}];
yzPlane = ParametricPlot3D[{x, 0, z}, {x, -5, 5}, {z, -5, 5}];
Calling Show without BoxRatios returns
Whereas BoxRatios -> {10, 10, 10}
returns
Note the difference in gridlines. Is there some way to make them uniform? More generally, is it known what is going on under the hood of ParametricPlot3d that causes this?


BoxRatios -> {5, 5, 1}do what you want? – Bob Hanlon Mar 31 '18 at 18:02The specified setting for the option Graphics3DBoxOptions, AspectRatio cannot be used.– jamesson Mar 31 '18 at 18:11BoxRatios: have you tried evaluatingShow[xyPlane, yzPlane, PlotRange -> All]? – J. M.'s missing motivation Mar 31 '18 at 18:12PlotRange). Try evaluatingShow[yzPlane, xyPlane], and then try addingPlotRange -> Allagain. – J. M.'s missing motivation Mar 31 '18 at 18:17