├── .gitignore ├── Panoramic Geometry Collection README.html ├── README.md ├── docs └── screenshots │ ├── angular_360_degree_120px.png │ ├── cubemap3x2_120px.png │ ├── cylindrical_120px.png │ ├── facebookCubemap3x2_120px.png │ ├── facebookPyramid_120px.png │ ├── facebookVerticalStrip_120px.jpg │ ├── fulldome180degree_120px.png │ ├── gearvrMono_38px.png │ ├── horizontalCross_120px.png │ ├── horizontalStrip_38px.png │ ├── horizontalTee_120px.png │ ├── latlong_120px.png │ ├── lg360_120px.png │ ├── mentalRayCube1_38px.png │ ├── mirrorball_120px.png │ ├── quadsphere_120px.png │ ├── quadsphere_mesh.png │ ├── ricohThetaS_120px.png │ ├── samsung_gear_360_120px.png │ ├── verticalCross_120px.png │ ├── verticalStrip_120px.png │ ├── verticalTee_120px.png │ └── youtube_cubemap3x2_120px.png ├── images ├── angular360.png ├── back.png ├── bottom.png ├── cube1_map.png ├── cubemap3x2.png ├── equirectangular.png ├── facebook_cubemap3x2.jpg ├── facebook_pyramid.jpg ├── facebook_vertical_strip.jpg ├── front.png ├── fulldome_2K.jpg ├── gearvr_mono.jpg ├── gearvr_stereo.jpg ├── horizontal cross.png ├── horizontal strip.png ├── horizontal tee.png ├── left.png ├── moon_color_quadsphere_4k.jpg ├── moon_displacement_4k.jpg ├── mr cube1 horizontal strip.png ├── ricoh_theta_s_wong_tai_sin_temple_hong_kong.png ├── right.png ├── samsung_gear360.jpg ├── starglobe_quadsphere_2k.png ├── top.png ├── vertical strip.png ├── vertical tee.png ├── vertical_cross.png └── youtube_cubemap3x2.jpg └── meshes ├── angular360_mesh.ma ├── angular360_mesh.obj ├── cube3x2_mesh.ma ├── cube3x2_mesh.obj ├── cylinder_mesh.ma ├── cylinder_mesh.obj ├── facebookCube3x2_mesh.ma ├── facebookCube3x2_mesh.obj ├── facebookPyramid_mesh.ma ├── facebookPyramid_mesh.obj ├── facebookVerticalStripCube_mesh.ma ├── facebookVerticalStripCube_mesh.obj ├── fulldomeGrid_mesh.ma ├── fulldomeGrid_mesh.obj ├── fulldome_mesh.ma ├── fulldome_mesh.obj ├── fulldome_mesh_smoothed.ma ├── fulldome_mesh_smoothed.obj ├── fulldome_quads_16_9_mesh.ma ├── fulldome_quads_4_3_mesh.ma ├── fulldome_quads_mesh.ma ├── gearVRCube_mesh.ma ├── gearVRCube_mesh.obj ├── horizontalCrossCube_mesh.ma ├── horizontalCrossCube_mesh.obj ├── horizontalStripCube_mesh.ma ├── horizontalStripCube_mesh.obj ├── horizontalTeeCube_mesh.ma ├── horizontalTeeCube_mesh.obj ├── latlongSphere_mesh.ma ├── latlongSphere_mesh.obj ├── lg360_mesh.ma ├── lg360_mesh.obj ├── mentalRayCube1_mesh.ma ├── mentalRayCube1_mesh.obj ├── mirrorball_mesh.ma ├── mirrorball_mesh.obj ├── ricoh_theta_s_mesh.ma ├── ricoh_theta_s_mesh.obj ├── samsungGear360_mesh.ma ├── samsungGear360_mesh.obj ├── starglobe_mesh.ma ├── starglobe_mesh.obj ├── verticalCrossCube_mesh.ma ├── verticalCrossCube_mesh.obj ├── verticalStripCube_mesh.ma ├── verticalStripCube_mesh.obj ├── verticalTeeCube_mesh.ma ├── verticalTeeCube_mesh.obj └── youtube_cubemap3x2_mesh.obj /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewHazelden/Panoramic_Geometry_Collection/HEAD/.gitignore -------------------------------------------------------------------------------- /Panoramic Geometry Collection README.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewHazelden/Panoramic_Geometry_Collection/HEAD/Panoramic Geometry Collection README.html -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewHazelden/Panoramic_Geometry_Collection/HEAD/README.md -------------------------------------------------------------------------------- /docs/screenshots/angular_360_degree_120px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewHazelden/Panoramic_Geometry_Collection/HEAD/docs/screenshots/angular_360_degree_120px.png -------------------------------------------------------------------------------- /docs/screenshots/cubemap3x2_120px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewHazelden/Panoramic_Geometry_Collection/HEAD/docs/screenshots/cubemap3x2_120px.png -------------------------------------------------------------------------------- /docs/screenshots/cylindrical_120px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewHazelden/Panoramic_Geometry_Collection/HEAD/docs/screenshots/cylindrical_120px.png -------------------------------------------------------------------------------- /docs/screenshots/facebookCubemap3x2_120px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewHazelden/Panoramic_Geometry_Collection/HEAD/docs/screenshots/facebookCubemap3x2_120px.png -------------------------------------------------------------------------------- /docs/screenshots/facebookPyramid_120px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewHazelden/Panoramic_Geometry_Collection/HEAD/docs/screenshots/facebookPyramid_120px.png -------------------------------------------------------------------------------- /docs/screenshots/facebookVerticalStrip_120px.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewHazelden/Panoramic_Geometry_Collection/HEAD/docs/screenshots/facebookVerticalStrip_120px.jpg -------------------------------------------------------------------------------- /docs/screenshots/fulldome180degree_120px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewHazelden/Panoramic_Geometry_Collection/HEAD/docs/screenshots/fulldome180degree_120px.png -------------------------------------------------------------------------------- /docs/screenshots/gearvrMono_38px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewHazelden/Panoramic_Geometry_Collection/HEAD/docs/screenshots/gearvrMono_38px.png -------------------------------------------------------------------------------- /docs/screenshots/horizontalCross_120px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewHazelden/Panoramic_Geometry_Collection/HEAD/docs/screenshots/horizontalCross_120px.png -------------------------------------------------------------------------------- /docs/screenshots/horizontalStrip_38px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewHazelden/Panoramic_Geometry_Collection/HEAD/docs/screenshots/horizontalStrip_38px.png -------------------------------------------------------------------------------- /docs/screenshots/horizontalTee_120px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewHazelden/Panoramic_Geometry_Collection/HEAD/docs/screenshots/horizontalTee_120px.png -------------------------------------------------------------------------------- /docs/screenshots/latlong_120px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewHazelden/Panoramic_Geometry_Collection/HEAD/docs/screenshots/latlong_120px.png -------------------------------------------------------------------------------- /docs/screenshots/lg360_120px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewHazelden/Panoramic_Geometry_Collection/HEAD/docs/screenshots/lg360_120px.png -------------------------------------------------------------------------------- /docs/screenshots/mentalRayCube1_38px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewHazelden/Panoramic_Geometry_Collection/HEAD/docs/screenshots/mentalRayCube1_38px.png -------------------------------------------------------------------------------- /docs/screenshots/mirrorball_120px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewHazelden/Panoramic_Geometry_Collection/HEAD/docs/screenshots/mirrorball_120px.png -------------------------------------------------------------------------------- /docs/screenshots/quadsphere_120px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewHazelden/Panoramic_Geometry_Collection/HEAD/docs/screenshots/quadsphere_120px.png -------------------------------------------------------------------------------- /docs/screenshots/quadsphere_mesh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewHazelden/Panoramic_Geometry_Collection/HEAD/docs/screenshots/quadsphere_mesh.png -------------------------------------------------------------------------------- /docs/screenshots/ricohThetaS_120px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewHazelden/Panoramic_Geometry_Collection/HEAD/docs/screenshots/ricohThetaS_120px.png -------------------------------------------------------------------------------- /docs/screenshots/samsung_gear_360_120px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewHazelden/Panoramic_Geometry_Collection/HEAD/docs/screenshots/samsung_gear_360_120px.png -------------------------------------------------------------------------------- /docs/screenshots/verticalCross_120px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewHazelden/Panoramic_Geometry_Collection/HEAD/docs/screenshots/verticalCross_120px.png -------------------------------------------------------------------------------- /docs/screenshots/verticalStrip_120px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewHazelden/Panoramic_Geometry_Collection/HEAD/docs/screenshots/verticalStrip_120px.png -------------------------------------------------------------------------------- /docs/screenshots/verticalTee_120px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewHazelden/Panoramic_Geometry_Collection/HEAD/docs/screenshots/verticalTee_120px.png -------------------------------------------------------------------------------- /docs/screenshots/youtube_cubemap3x2_120px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewHazelden/Panoramic_Geometry_Collection/HEAD/docs/screenshots/youtube_cubemap3x2_120px.png -------------------------------------------------------------------------------- /images/angular360.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewHazelden/Panoramic_Geometry_Collection/HEAD/images/angular360.png -------------------------------------------------------------------------------- /images/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewHazelden/Panoramic_Geometry_Collection/HEAD/images/back.png -------------------------------------------------------------------------------- /images/bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewHazelden/Panoramic_Geometry_Collection/HEAD/images/bottom.png -------------------------------------------------------------------------------- /images/cube1_map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewHazelden/Panoramic_Geometry_Collection/HEAD/images/cube1_map.png -------------------------------------------------------------------------------- /images/cubemap3x2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewHazelden/Panoramic_Geometry_Collection/HEAD/images/cubemap3x2.png -------------------------------------------------------------------------------- /images/equirectangular.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewHazelden/Panoramic_Geometry_Collection/HEAD/images/equirectangular.png -------------------------------------------------------------------------------- /images/facebook_cubemap3x2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewHazelden/Panoramic_Geometry_Collection/HEAD/images/facebook_cubemap3x2.jpg -------------------------------------------------------------------------------- /images/facebook_pyramid.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewHazelden/Panoramic_Geometry_Collection/HEAD/images/facebook_pyramid.jpg -------------------------------------------------------------------------------- /images/facebook_vertical_strip.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewHazelden/Panoramic_Geometry_Collection/HEAD/images/facebook_vertical_strip.jpg -------------------------------------------------------------------------------- /images/front.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewHazelden/Panoramic_Geometry_Collection/HEAD/images/front.png -------------------------------------------------------------------------------- /images/fulldome_2K.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewHazelden/Panoramic_Geometry_Collection/HEAD/images/fulldome_2K.jpg -------------------------------------------------------------------------------- /images/gearvr_mono.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewHazelden/Panoramic_Geometry_Collection/HEAD/images/gearvr_mono.jpg -------------------------------------------------------------------------------- /images/gearvr_stereo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewHazelden/Panoramic_Geometry_Collection/HEAD/images/gearvr_stereo.jpg -------------------------------------------------------------------------------- /images/horizontal cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewHazelden/Panoramic_Geometry_Collection/HEAD/images/horizontal cross.png -------------------------------------------------------------------------------- /images/horizontal strip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewHazelden/Panoramic_Geometry_Collection/HEAD/images/horizontal strip.png -------------------------------------------------------------------------------- /images/horizontal tee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewHazelden/Panoramic_Geometry_Collection/HEAD/images/horizontal tee.png -------------------------------------------------------------------------------- /images/left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewHazelden/Panoramic_Geometry_Collection/HEAD/images/left.png -------------------------------------------------------------------------------- /images/moon_color_quadsphere_4k.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewHazelden/Panoramic_Geometry_Collection/HEAD/images/moon_color_quadsphere_4k.jpg -------------------------------------------------------------------------------- /images/moon_displacement_4k.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewHazelden/Panoramic_Geometry_Collection/HEAD/images/moon_displacement_4k.jpg -------------------------------------------------------------------------------- /images/mr cube1 horizontal strip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewHazelden/Panoramic_Geometry_Collection/HEAD/images/mr cube1 horizontal strip.png -------------------------------------------------------------------------------- /images/ricoh_theta_s_wong_tai_sin_temple_hong_kong.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewHazelden/Panoramic_Geometry_Collection/HEAD/images/ricoh_theta_s_wong_tai_sin_temple_hong_kong.png -------------------------------------------------------------------------------- /images/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewHazelden/Panoramic_Geometry_Collection/HEAD/images/right.png -------------------------------------------------------------------------------- /images/samsung_gear360.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewHazelden/Panoramic_Geometry_Collection/HEAD/images/samsung_gear360.jpg -------------------------------------------------------------------------------- /images/starglobe_quadsphere_2k.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewHazelden/Panoramic_Geometry_Collection/HEAD/images/starglobe_quadsphere_2k.png -------------------------------------------------------------------------------- /images/top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewHazelden/Panoramic_Geometry_Collection/HEAD/images/top.png -------------------------------------------------------------------------------- /images/vertical strip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewHazelden/Panoramic_Geometry_Collection/HEAD/images/vertical strip.png -------------------------------------------------------------------------------- /images/vertical tee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewHazelden/Panoramic_Geometry_Collection/HEAD/images/vertical tee.png -------------------------------------------------------------------------------- /images/vertical_cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewHazelden/Panoramic_Geometry_Collection/HEAD/images/vertical_cross.png -------------------------------------------------------------------------------- /images/youtube_cubemap3x2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewHazelden/Panoramic_Geometry_Collection/HEAD/images/youtube_cubemap3x2.jpg -------------------------------------------------------------------------------- /meshes/angular360_mesh.ma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewHazelden/Panoramic_Geometry_Collection/HEAD/meshes/angular360_mesh.ma -------------------------------------------------------------------------------- /meshes/angular360_mesh.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewHazelden/Panoramic_Geometry_Collection/HEAD/meshes/angular360_mesh.obj -------------------------------------------------------------------------------- /meshes/cube3x2_mesh.ma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewHazelden/Panoramic_Geometry_Collection/HEAD/meshes/cube3x2_mesh.ma -------------------------------------------------------------------------------- /meshes/cube3x2_mesh.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewHazelden/Panoramic_Geometry_Collection/HEAD/meshes/cube3x2_mesh.obj -------------------------------------------------------------------------------- /meshes/cylinder_mesh.ma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewHazelden/Panoramic_Geometry_Collection/HEAD/meshes/cylinder_mesh.ma -------------------------------------------------------------------------------- /meshes/cylinder_mesh.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewHazelden/Panoramic_Geometry_Collection/HEAD/meshes/cylinder_mesh.obj -------------------------------------------------------------------------------- /meshes/facebookCube3x2_mesh.ma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewHazelden/Panoramic_Geometry_Collection/HEAD/meshes/facebookCube3x2_mesh.ma -------------------------------------------------------------------------------- /meshes/facebookCube3x2_mesh.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewHazelden/Panoramic_Geometry_Collection/HEAD/meshes/facebookCube3x2_mesh.obj -------------------------------------------------------------------------------- /meshes/facebookPyramid_mesh.ma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewHazelden/Panoramic_Geometry_Collection/HEAD/meshes/facebookPyramid_mesh.ma -------------------------------------------------------------------------------- /meshes/facebookPyramid_mesh.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewHazelden/Panoramic_Geometry_Collection/HEAD/meshes/facebookPyramid_mesh.obj -------------------------------------------------------------------------------- /meshes/facebookVerticalStripCube_mesh.ma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewHazelden/Panoramic_Geometry_Collection/HEAD/meshes/facebookVerticalStripCube_mesh.ma -------------------------------------------------------------------------------- /meshes/facebookVerticalStripCube_mesh.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewHazelden/Panoramic_Geometry_Collection/HEAD/meshes/facebookVerticalStripCube_mesh.obj -------------------------------------------------------------------------------- /meshes/fulldomeGrid_mesh.ma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewHazelden/Panoramic_Geometry_Collection/HEAD/meshes/fulldomeGrid_mesh.ma -------------------------------------------------------------------------------- /meshes/fulldomeGrid_mesh.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewHazelden/Panoramic_Geometry_Collection/HEAD/meshes/fulldomeGrid_mesh.obj -------------------------------------------------------------------------------- /meshes/fulldome_mesh.ma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewHazelden/Panoramic_Geometry_Collection/HEAD/meshes/fulldome_mesh.ma -------------------------------------------------------------------------------- /meshes/fulldome_mesh.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewHazelden/Panoramic_Geometry_Collection/HEAD/meshes/fulldome_mesh.obj -------------------------------------------------------------------------------- /meshes/fulldome_mesh_smoothed.ma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewHazelden/Panoramic_Geometry_Collection/HEAD/meshes/fulldome_mesh_smoothed.ma -------------------------------------------------------------------------------- /meshes/fulldome_mesh_smoothed.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewHazelden/Panoramic_Geometry_Collection/HEAD/meshes/fulldome_mesh_smoothed.obj -------------------------------------------------------------------------------- /meshes/fulldome_quads_16_9_mesh.ma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewHazelden/Panoramic_Geometry_Collection/HEAD/meshes/fulldome_quads_16_9_mesh.ma -------------------------------------------------------------------------------- /meshes/fulldome_quads_4_3_mesh.ma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewHazelden/Panoramic_Geometry_Collection/HEAD/meshes/fulldome_quads_4_3_mesh.ma -------------------------------------------------------------------------------- /meshes/fulldome_quads_mesh.ma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewHazelden/Panoramic_Geometry_Collection/HEAD/meshes/fulldome_quads_mesh.ma -------------------------------------------------------------------------------- /meshes/gearVRCube_mesh.ma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewHazelden/Panoramic_Geometry_Collection/HEAD/meshes/gearVRCube_mesh.ma -------------------------------------------------------------------------------- /meshes/gearVRCube_mesh.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewHazelden/Panoramic_Geometry_Collection/HEAD/meshes/gearVRCube_mesh.obj -------------------------------------------------------------------------------- /meshes/horizontalCrossCube_mesh.ma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewHazelden/Panoramic_Geometry_Collection/HEAD/meshes/horizontalCrossCube_mesh.ma -------------------------------------------------------------------------------- /meshes/horizontalCrossCube_mesh.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewHazelden/Panoramic_Geometry_Collection/HEAD/meshes/horizontalCrossCube_mesh.obj -------------------------------------------------------------------------------- /meshes/horizontalStripCube_mesh.ma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewHazelden/Panoramic_Geometry_Collection/HEAD/meshes/horizontalStripCube_mesh.ma -------------------------------------------------------------------------------- /meshes/horizontalStripCube_mesh.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewHazelden/Panoramic_Geometry_Collection/HEAD/meshes/horizontalStripCube_mesh.obj -------------------------------------------------------------------------------- /meshes/horizontalTeeCube_mesh.ma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewHazelden/Panoramic_Geometry_Collection/HEAD/meshes/horizontalTeeCube_mesh.ma -------------------------------------------------------------------------------- /meshes/horizontalTeeCube_mesh.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewHazelden/Panoramic_Geometry_Collection/HEAD/meshes/horizontalTeeCube_mesh.obj -------------------------------------------------------------------------------- /meshes/latlongSphere_mesh.ma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewHazelden/Panoramic_Geometry_Collection/HEAD/meshes/latlongSphere_mesh.ma -------------------------------------------------------------------------------- /meshes/latlongSphere_mesh.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewHazelden/Panoramic_Geometry_Collection/HEAD/meshes/latlongSphere_mesh.obj -------------------------------------------------------------------------------- /meshes/lg360_mesh.ma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewHazelden/Panoramic_Geometry_Collection/HEAD/meshes/lg360_mesh.ma -------------------------------------------------------------------------------- /meshes/lg360_mesh.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewHazelden/Panoramic_Geometry_Collection/HEAD/meshes/lg360_mesh.obj -------------------------------------------------------------------------------- /meshes/mentalRayCube1_mesh.ma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewHazelden/Panoramic_Geometry_Collection/HEAD/meshes/mentalRayCube1_mesh.ma -------------------------------------------------------------------------------- /meshes/mentalRayCube1_mesh.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewHazelden/Panoramic_Geometry_Collection/HEAD/meshes/mentalRayCube1_mesh.obj -------------------------------------------------------------------------------- /meshes/mirrorball_mesh.ma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewHazelden/Panoramic_Geometry_Collection/HEAD/meshes/mirrorball_mesh.ma -------------------------------------------------------------------------------- /meshes/mirrorball_mesh.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewHazelden/Panoramic_Geometry_Collection/HEAD/meshes/mirrorball_mesh.obj -------------------------------------------------------------------------------- /meshes/ricoh_theta_s_mesh.ma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewHazelden/Panoramic_Geometry_Collection/HEAD/meshes/ricoh_theta_s_mesh.ma -------------------------------------------------------------------------------- /meshes/ricoh_theta_s_mesh.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewHazelden/Panoramic_Geometry_Collection/HEAD/meshes/ricoh_theta_s_mesh.obj -------------------------------------------------------------------------------- /meshes/samsungGear360_mesh.ma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewHazelden/Panoramic_Geometry_Collection/HEAD/meshes/samsungGear360_mesh.ma -------------------------------------------------------------------------------- /meshes/samsungGear360_mesh.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewHazelden/Panoramic_Geometry_Collection/HEAD/meshes/samsungGear360_mesh.obj -------------------------------------------------------------------------------- /meshes/starglobe_mesh.ma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewHazelden/Panoramic_Geometry_Collection/HEAD/meshes/starglobe_mesh.ma -------------------------------------------------------------------------------- /meshes/starglobe_mesh.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewHazelden/Panoramic_Geometry_Collection/HEAD/meshes/starglobe_mesh.obj -------------------------------------------------------------------------------- /meshes/verticalCrossCube_mesh.ma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewHazelden/Panoramic_Geometry_Collection/HEAD/meshes/verticalCrossCube_mesh.ma -------------------------------------------------------------------------------- /meshes/verticalCrossCube_mesh.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewHazelden/Panoramic_Geometry_Collection/HEAD/meshes/verticalCrossCube_mesh.obj -------------------------------------------------------------------------------- /meshes/verticalStripCube_mesh.ma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewHazelden/Panoramic_Geometry_Collection/HEAD/meshes/verticalStripCube_mesh.ma -------------------------------------------------------------------------------- /meshes/verticalStripCube_mesh.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewHazelden/Panoramic_Geometry_Collection/HEAD/meshes/verticalStripCube_mesh.obj -------------------------------------------------------------------------------- /meshes/verticalTeeCube_mesh.ma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewHazelden/Panoramic_Geometry_Collection/HEAD/meshes/verticalTeeCube_mesh.ma -------------------------------------------------------------------------------- /meshes/verticalTeeCube_mesh.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewHazelden/Panoramic_Geometry_Collection/HEAD/meshes/verticalTeeCube_mesh.obj -------------------------------------------------------------------------------- /meshes/youtube_cubemap3x2_mesh.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewHazelden/Panoramic_Geometry_Collection/HEAD/meshes/youtube_cubemap3x2_mesh.obj --------------------------------------------------------------------------------