• Remix
  • Share
  • New Entry

on 13 Oct 2021
  • 9
  • 117
  • 0
  • 0
  • 277
[x,y,z] = meshgrid(-1:.05:1);
for i = 1:6
a = .025*i;
d = x.^2+y.^2+z.^2;
v = x.^4+y.^4+z.^4+a*d.^2-d+9/20;
[f,p] = isosurface(x, y, z, v,0);
subplot(2,3,i)
trisurf(f,p(:,1),p(:,2),p(:,3),p(:,3),'EdgeColor','none');
camlight; lighting phong;
end
text(-5,5,2,'Goursat''s Surfaces','FontSize',24)
Remix Tree