This post in reply to the Question, Implicitplot3d bounded portion of surface

My answer in this topic does not load for some reason, so I had to create this post.

Variant of solution:

with(plots):

F := piecewise(x >= 0 and y >= 0 and z >= 0, 2*x+3*y+z-6, undefined):

implicitplot3d(F, x = -3 .. 3, y = -3 .. 3, z = -1 .. 7, color = red, axes = normal, scaling = constrained, style = surface, numpoints = 50000, view=[-3 .. 3, -3 .. 3, -1 .. 7]);

Even easier:

implicitplot3d(2*x+3*y+z=6, x = 0 .. 3, y = 0 .. 3, z = 0 .. 7, color = red, axes = normal, scaling = constrained, style = surface, view=[-3 .. 3, -3 .. 3, -1 .. 7]);


Please Wait...