• Remix
  • Share
  • New Entry

on 5 Oct 2021
  • 8
  • 62
  • 0
  • 0
  • 192
clf;
[x,y,z] = meshgrid (-2:0.5:2, -2:0.5:2, -2:0.5:2);
v = x.^2 + y.^2 + z.^2;
isosurface (x, y, z, v, 3);
isosurface (x, y, z, v, 5);
axis equal;
title ('isosurfaces of two nested spheres by RAhulPunk');
Remix Tree