• Remix
  • Share
  • New Entry

on 27 Oct 2021
  • 5
  • 76
  • 0
  • 0
  • 222
% Started as a remix to just save characters. The
% original GO image was nice, but a nice Jenny Bosten wispy background
% would be a cool addition to this image.
% Also: petition to make "Bosten" a function in MATLAB that creates AlphaData smoke!!!!!
x=0:.01:1;
[x,y,z]=meshgrid(x,x,x);
f=@(x)sin(2*pi*(x));
F=f(x).*f(y).*f(1*z);
hold on
s=@(q,w)isosurface(x,y,z,F.^q,w,x);
s(1,.1);
%s(x,y,z,F.^2,.25,x)
s(2,.25);
s(4,.55);
s(6,.75);
s(8,.95);
colormap copper
pbaspect([1,1,1])
view(45,25)
axis off;
set(gcf,'Color','k')
Remix Tree