• Remix
  • Share
  • New Entry

on 27 Oct 2021
  • 8
  • 19
  • 0
  • 0
  • 233
% Make flight path
a=700;
b=(1:a)/a;
xyz=[sin(b*pi*2);cos(b*1.2);sin(b*pi*1.2+0)]*2;
% taper:
t=sqrt(sin(b.^2*pi));
for n = 1:a-1
% Motion blur
if mod(n,5)==1
% Density & spacing
sgb=rand(3,round(20*t(n).^.4)+1)*t(n);
end
% Combine with path
sg = sgb+xyz(:,n);
% Plot
plot3(sg(1,:),sg(2,:),sg(3,:),'k.','markersize', 1);
hold on;
end
axis off
Remix Tree