I have the following code:
\[Rho][c1_, R_, w_] := -((
c1 (R^4 + (4 + c1) R^2 w^2 - 3 (-1 + c1) w^4))/((-1 + c1) (R^2 +
w^2)^3));
Plot3D[\[Rho][23, R, w], {R, 0, 5}, {w, 0, 5},
PlotRange -> {Automatic, Automatic, {-10, 10}},
AxesLabel -> {"R", "w", "\[Rho]"},
MeshFunctions -> {(#/Sqrt[22] - #2) &}, MeshStyle -> {Thick, Red}]
It produces the correct plot, but gives too many mesh lines: I only want the one passing through $(0,0)$. How should I modify the code?


Mesh -> {{0}}? $\endgroup$