다면체 갤러리 작성
다수의 이미지를 동시에 시각화하면 편리한 경우가 있습니다.
In[1]:=
polyhedra =
EntityValue[
EntityValue[Entity["Polyhedron"], "Entities"], {"Name", "Image"}];
그러한 이미지 갤러리를 웹에 작성하기 위해서 GalleryView를 사용합니다.
In[2]:=
CloudDeploy[GalleryView[polyhedra[[All, 2]]]]
gallery를 직접 방문해 봅니다.
타이틀을 추가하여 GalleryView를 더욱 향상 시킬 수 있습니다.
In[3]:=
CloudDeploy[
GalleryView[<|"Title" -> #1, "Content" -> #2|> & @@@ polyhedra,
AppearanceRules -> <|"Title" -> "A bunch of polyhedra"|>]]