- /
-
Entering_Abyss
on 19 Oct 2022
- 6
- 21
- 1
- 0
- 181
%presets
r = 1500;
f = 17;
t = 1.5;
Z = 0;
x = linspace(0.7,1.08,r);
y = linspace(-.2,.2,r);
M = x + 1i .* y.';
%iterate
for p=1:f
Z=sinpi(Z.^t+M);
end
imshow(real(Z'),'C',colorcube)
%get big picture
set(gcf,'Position',[0,0,3000,3000])