• Remix
  • Share
  • New Entry

on 22 Oct 2022
  • 2
  • 9
  • 1
  • 0
  • 276
% definetly not natural
axis off
f(0,0,[0,0,-6,0,7,0],[0,55,99,55,105,55],-2,1)
function f(x,y,d,R,n,N)
if n<N
rand(1,3);
b=(n>3)*ans+(n==6)*(1-ans);
X=R.*sind(d)+x;
Y=R.*cosd(d)+y;
line(X,Y,X+n,color=b,LineWidth=norm(R)/4);
A=[0 -48 -25 43 31];
for i=2:5
r=rem(i,2);
L=.58+r*.07;
f(X(i),Y(i),d+A(i),L*R,n+1,7-r)
end
end
end
Remix Tree