• Remix
  • Share
  • New Entry

on 22 Oct 2021
  • 9
  • 15
  • 3
  • 0
  • 238
%Fractal proj
close all
col=10;
r=10;
m=1000; %800 resolution
cx=0.1;
cy=0;
l=5; %L
x=linspace(cx-l,cx+l,m); % x=[-5 5]
y=linspace(cy-l,cy+l,m); %y=[-5 5]
[X,Y]=meshgrid(x,y);
Z=zeros(m);
C=X+i*Y;
n=0.00000001 %Like zoom
n = 1.0000e-08
for k=1:col;
Z= exp(Z + acos(1./n*C)); %hearty crown
W=exp(-abs(Z));
end
%pcolor(W);
pcolor(rot90(W)); %turn
shading interp;
axis off
%colormap(gray(32))
colormap("flag")
Remix Tree
Load full remix tree