- /
-
Trigo Totem
on 10 Oct 2022
- 3
- 29
- 5
- 0
- 211
%presets
r=1500;
f=2;
t=1.5;
Z = 0;
%for improved speed, do the calculation on the gpu
e=linspace(-.2,1.2,1.3*r);
i=linspace(-.6,.6,r).*i;
[x,y]=meshgrid(e,i);
M=x+y;
%iterate
for p=1:f
Z=tan(((Z).^t)+csc(cos(pi*exp(M).^exp(M))));
end
imshow(real(Z'),'C',colorcube)
set(gcf,'Position',[0,0,3000,3000])