• Remix
  • Share
  • New Entry

on 24 Oct 2022
  • 9
  • 22
  • 0
  • 0
  • 264
% Create a pair of blobs merging together across several axes
tiledlayout(2,3,Pad='t',TileS='t')
idx=1;
for q=[8
7
6
5
4
1]'
nexttile
c=[10 q 10
10 -q 10];
B=blinnblob(30+c,64,64,64);
S=isosurface(B,.1);
v=S.vertices;
patch(S,FaceC='#f71',EdgeC='n')
lighting g
camlight
material([ .6, .9, .3, 2, .5 ])
%axis([26 54 15 45])
axis equal off
title("Step: " + idx);
idx=idx+1;
end
Remix Tree