- /
-
Borg Cube Minus One
on 18 Oct 2021
- 5
- 20
- 1
- 0
- 280
V=-.5*ones(8,3);
V([2 3 6 7],1)=.5;
V([3 4 7 8],2) =.5;
V(5:8,3)=.5;
p0=patch('Faces',[1:4 1 5;2:4 1 2 6;6:8 5 3 7;5:8 4 8]','Verti',V, 'FaceC',[.3 .3 .3],'lines','none');
light
for i=1:9
for j=1:9
for k=1:9
q=copyobj(p0,gca);
q.Vertices=V+[i j k]+.7*rand(1,3);
end
end
end
axis equal tight off
view(3)