• Remix
  • Share
  • New Entry

on 11 Oct 2021
  • 5
  • 21
  • 0
  • 0
  • 206
clf;
[x,y,z] = meshgrid (-2:0.2:2, -2:0.5:2, -2:0.2:2);
v = x.^20 + y.^10 + z.^2;
isosurface (x, y, z, v, 5);
isosurface (x, y, z, v, 3);
axis equal;
view(-37,30);
title ('isosurfaces of two nested spheres by RAhulPunk');
Remix Tree