I tried to plot a 3D surface using Maxima, which I did achieve using the following code
load(draw);
draw3d(xlabel="x", ylabel="y", zlabel="z",
proportional_axes=xyz,
enhanced3d=true, colorbox=false,
xtics=0.5, ytics=0.5, ztics=0.5,
implicit(x^2+y^2+z^2<=1,
x,-2,2,
y,-2,2,
z,0,1)
);
The above code plots a semi-sphere
Note: This is a hollow semi-sphere
My question is if it's possible to plot everything except the semi-sphere, fill all the area around it. Or even plot a filled semi-sphere instead of a hollow semi-sphere.
My goal is to plot the function y >= x^2; z >= 0
What I got until now is this
draw3d(
implicit(y=x^2,
x,-4,4,
y,0,2,
z,0,4)
);
Also, on 2D plane there is something that looks like what I want, in fact I couldn't make it work on 3D space
draw2d(
key="y >= x^2",
fill_color = blue,
filled_func = x^2,
explicit(0,x,-4,4),
user_preamble="set key at 0.5, 15"
)$
I accept sugestions of other softwares that can achieve what I want.