- /
-
please vote my work viewer
on 11 Oct 2021
- 10
- 50
- 3
- 0
- 192
clf;
[x,y,z] = meshgrid (-2:0.1:2, -2:0.1:2, -2:0.1: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');