- /
-
3D Drawing
on 29 Oct 2021
- 27
- 23
- 1
- 0
- 196
figure('color','none')
a=101;
b=0:.01:1;
t=sin(b'.^2*pi);
[x,y,z]=sphere(a-1);
v=(abs(sin(20*b'))+3)/4;
t(1:30)=nan;
A=v'.^6.*cat(3,1,0,1).*t;
u=v'.*t;
surf(x.*u,y.*u,z,A,'SpecularStrength',.2,'AmbientStrength',1);