3

I'm drawing a heart shape (3D) using Maple, but I think it is not correct. Please hint to me how to draw it correctly.

with(plots);

implicitplot3d((2*x^2+y^2+z^2-1)^3-(1/10)*x^2*z^2-y^2*z^3, x = -1.2 .. 1.2, y = -1.2 .. 1.2, z = -1.2 .. 1.3, numpoints = 80000);

enter image description here

enter image description here

Software
  • 737

1 Answers1

1
with(plots);

implicitplot3d((2*x^2+y^2+z^2-1)^3-(1/10)*x^2*z^2-y^2*z^3, x = -1.2 .. 1.2,
                 y = -1.2 .. 1.2, z = -1.2 .. 1.3, numpoints = 80000);

it is true. no problem in plot.

zhk
  • 585
  • 7
  • 26