the equation of the surface of the given imageImage is Sin[x+y^2]. I Want to plot similler figure in ManimCE. I Plot this figure using wolfram mathemaitca. Mathematica code given following -
Plot3D[Sin[x + y^2], {x, -2, 2}, {y, -2, 2},
RegionFunction -> (#1^2 + #2^2 < 4 &), Filling -> Bottom,
FillingStyle -> Directive[Opacity[0.4], Red]]
class SinXYPlot3D(ThreeDScene): def construct(self): axes = ThreeDAxes( x_range=[-2, 2, 0.5], y_range=[-2, 2, 0.5], z_range=[-1, 1, 0.5], x_length=7, y_length=7, z_length=4 )