• Remix
  • Share
  • New Entry

on 30 Oct 2021
  • 6
  • 10
  • 0
  • 0
  • 150
clf;
[x,y,z] = meshgrid (-2:0.1:2, -2:0.1:2, -2:0.1:2);
v = x.^200 + y.^200 + z.^200;
isosurface (x, y, z, v, 3);
isosurface (x, y, z, v, 1);
axis equal;
axis off
Remix Tree