- /
-
The Scrambled Predator's Cube
on 15 Oct 2024
- 12
- 294
- 0
- 0
- 266
Cite your audio source here (if applicable): Hans Zimmer - Where We're Going (Interstellar (2014))
drawframe(1);
Write your drawframe function below
function drawframe(f)
% Under 280 Characters Movie-Challenge 😉 ... my old entry ...
d = rand(8,8,8);
iv = .5+(f/10000);
h = patch(isosurface(d,iv),'FaceColor','blue','EdgeColor','none');
isonormals(d,h)
patch(isocaps(d,iv),'FaceColor','interp','EdgeColor','none')
colormap hsv
daspect([1,1,1])
axis tight
view(3)
camlight right
camlight left
axis off
lighting phong
end