├── Camera ├── documentation.txt ├── vCamera.cpp └── vCamera.h ├── Geometry ├── Mesh.cpp └── Mesh.h ├── Input ├── Documentation.txt ├── input.cpp └── input.h ├── PixelBuffer ├── PixelBuffer.cpp ├── PixelBuffer.h └── documentation.txt ├── README ├── Silhouettes ├── Documentation.txt ├── ImageDataArrays.cpp ├── ImageDataArrays.h ├── frame.cpp └── frame.h ├── Texture ├── TextureGL.cpp └── TextureGL.h ├── Transforms ├── documentation.txt ├── transform.cpp └── transform.h ├── Window ├── Display.cpp ├── Display.h ├── Fps.cpp └── Fps.h ├── cudaKernel ├── Findsilhouette.cu └── render.cu ├── main.cpp ├── resources └── Data sets │ ├── Action Figure Morpheus │ ├── projection │ │ ├── 0.txt │ │ ├── 0.txt~ │ │ ├── 1.txt │ │ ├── 1.txt~ │ │ ├── 2.txt │ │ ├── 2.txt~ │ │ ├── 3.txt │ │ ├── 3.txt~ │ │ ├── 4.txt │ │ ├── 4.txt~ │ │ ├── 5.txt │ │ ├── 5.txt~ │ │ ├── 6.txt │ │ ├── 6.txt~ │ │ ├── 7.txt │ │ ├── 7.txt~ │ │ └── camera0.m │ └── visualize │ │ ├── 00.jpg │ │ ├── 01.jpg │ │ ├── 02.jpg │ │ ├── 03.jpg │ │ ├── 04.jpg │ │ ├── 05.jpg │ │ ├── 06.jpg │ │ └── 07.jpg │ ├── Dino rig │ ├── projection │ │ ├── 0.txt │ │ ├── 0.txt~ │ │ ├── 1.txt │ │ ├── 1.txt~ │ │ ├── 10.txt │ │ ├── 10.txt~ │ │ ├── 11.txt │ │ ├── 11.txt~ │ │ ├── 12.txt │ │ ├── 12.txt~ │ │ ├── 13.txt │ │ ├── 13.txt~ │ │ ├── 14.txt │ │ ├── 14.txt~ │ │ ├── 15.txt │ │ ├── 15.txt~ │ │ ├── 16.txt │ │ ├── 16.txt~ │ │ ├── 17.txt │ │ ├── 17.txt~ │ │ ├── 18.txt │ │ ├── 18.txt~ │ │ ├── 19.txt │ │ ├── 19.txt~ │ │ ├── 2.txt │ │ ├── 2.txt~ │ │ ├── 20.txt │ │ ├── 20.txt~ │ │ ├── 21.txt │ │ ├── 21.txt~ │ │ ├── 22.txt │ │ ├── 22.txt~ │ │ ├── 23.txt │ │ ├── 23.txt~ │ │ ├── 24.txt │ │ ├── 24.txt~ │ │ ├── 25.txt │ │ ├── 25.txt~ │ │ ├── 26.txt │ │ ├── 26.txt~ │ │ ├── 27.txt │ │ ├── 27.txt~ │ │ ├── 28.txt │ │ ├── 28.txt~ │ │ ├── 29.txt │ │ ├── 29.txt~ │ │ ├── 3.txt │ │ ├── 3.txt~ │ │ ├── 30.txt │ │ ├── 30.txt~ │ │ ├── 31.txt │ │ ├── 31.txt~ │ │ ├── 32.txt │ │ ├── 32.txt~ │ │ ├── 33.txt │ │ ├── 33.txt~ │ │ ├── 34.txt │ │ ├── 34.txt~ │ │ ├── 35.txt │ │ ├── 35.txt~ │ │ ├── 36.txt │ │ ├── 36.txt~ │ │ ├── 37.txt │ │ ├── 38.txt │ │ ├── 38.txt~ │ │ ├── 39.txt │ │ ├── 39.txt~ │ │ ├── 4.txt │ │ ├── 4.txt~ │ │ ├── 40.txt │ │ ├── 40.txt~ │ │ ├── 41.txt │ │ ├── 41.txt~ │ │ ├── 42.txt │ │ ├── 42.txt~ │ │ ├── 43.txt │ │ ├── 43.txt~ │ │ ├── 44.txt │ │ ├── 44.txt~ │ │ ├── 45.txt │ │ ├── 45.txt~ │ │ ├── 46.txt │ │ ├── 46.txt~ │ │ ├── 47.txt │ │ ├── 5.txt │ │ ├── 5.txt~ │ │ ├── 6.txt │ │ ├── 6.txt~ │ │ ├── 7.txt │ │ ├── 7.txt~ │ │ ├── 8.txt │ │ ├── 8.txt~ │ │ ├── 9.txt │ │ ├── 9.txt~ │ │ └── project.txt~ │ └── visualize │ │ ├── 00.png │ │ ├── 01.png │ │ ├── 02.png │ │ ├── 03.png │ │ ├── 04.png │ │ ├── 05.png │ │ ├── 06.png │ │ ├── 07.png │ │ ├── 08.png │ │ ├── 09.png │ │ ├── 10.png │ │ ├── 11.png │ │ ├── 12.png │ │ ├── 13.png │ │ ├── 14.png │ │ ├── 15.png │ │ ├── 16.png │ │ ├── 17.png │ │ ├── 18.png │ │ ├── 19.png │ │ ├── 20.png │ │ ├── 21.png │ │ ├── 22.png │ │ ├── 23.png │ │ ├── 24.png │ │ ├── 25.png │ │ ├── 26.png │ │ ├── 27.png │ │ ├── 28.png │ │ ├── 29.png │ │ ├── 30.png │ │ ├── 31.png │ │ ├── 32.png │ │ ├── 33.png │ │ ├── 34.png │ │ ├── 35.png │ │ ├── 36.png │ │ ├── 37.png │ │ ├── 38.png │ │ ├── 39.png │ │ ├── 40.png │ │ ├── 41.png │ │ ├── 42.png │ │ ├── 43.png │ │ ├── 44.png │ │ ├── 45.png │ │ ├── 46.png │ │ └── 47.png │ ├── Temple 47 image │ ├── projection │ │ ├── 0.txt │ │ ├── 1.txt │ │ ├── 10.txt │ │ ├── 11.txt │ │ ├── 12.txt │ │ ├── 13.txt │ │ ├── 14.txt │ │ ├── 15.txt │ │ ├── 16.txt │ │ ├── 17.txt │ │ ├── 18.txt │ │ ├── 19.txt │ │ ├── 2.txt │ │ ├── 20.txt │ │ ├── 21.txt │ │ ├── 22.txt │ │ ├── 23.txt │ │ ├── 24.txt │ │ ├── 25.txt │ │ ├── 26.txt │ │ ├── 27.txt │ │ ├── 28.txt │ │ ├── 29.txt │ │ ├── 3.txt │ │ ├── 30.txt │ │ ├── 31.txt │ │ ├── 32.txt │ │ ├── 33.txt │ │ ├── 34.txt │ │ ├── 35.txt │ │ ├── 36.txt │ │ ├── 37.txt │ │ ├── 38.txt │ │ ├── 39.txt │ │ ├── 4.txt │ │ ├── 40.txt │ │ ├── 41.txt │ │ ├── 42.txt │ │ ├── 43.txt │ │ ├── 44.txt │ │ ├── 45.txt │ │ ├── 46.txt │ │ ├── 5.txt │ │ ├── 6.txt │ │ ├── 7.txt │ │ ├── 8.txt │ │ ├── 9.txt │ │ └── templeR_par.txt │ └── visualize │ │ ├── 00.png │ │ ├── 01.png │ │ ├── 02.png │ │ ├── 03.png │ │ ├── 04.png │ │ ├── 05.png │ │ ├── 06.png │ │ ├── 07.png │ │ ├── 08.png │ │ ├── 09.png │ │ ├── 10.png │ │ ├── 11.png │ │ ├── 12.png │ │ ├── 13.png │ │ ├── 14.png │ │ ├── 15.png │ │ ├── 16.png │ │ ├── 17.png │ │ ├── 18.png │ │ ├── 19.png │ │ ├── 20.png │ │ ├── 21.png │ │ ├── 22.png │ │ ├── 23.png │ │ ├── 24.png │ │ ├── 25.png │ │ ├── 26.png │ │ ├── 27.png │ │ ├── 28.png │ │ ├── 29.png │ │ ├── 30.png │ │ ├── 31.png │ │ ├── 32.png │ │ ├── 33.png │ │ ├── 34.png │ │ ├── 35.png │ │ ├── 36.png │ │ ├── 37.png │ │ ├── 38.png │ │ ├── 39.png │ │ ├── 40.png │ │ ├── 41.png │ │ ├── 42.png │ │ ├── 43.png │ │ ├── 44.png │ │ ├── 45.png │ │ └── 46.png │ └── Toy Dinosaur │ ├── projection │ ├── 0.txt │ ├── 0.txt~ │ ├── 1.txt │ ├── 1.txt~ │ ├── 10.txt │ ├── 11.txt │ ├── 12.txt │ ├── 13.txt │ ├── 14.txt │ ├── 15.txt │ ├── 16.txt │ ├── 17.txt │ ├── 18.txt │ ├── 19.txt │ ├── 2.txt │ ├── 2.txt~ │ ├── 20.txt │ ├── 21.txt │ ├── 22.txt │ ├── 23.txt │ ├── 24.txt │ ├── 25.txt │ ├── 26.txt │ ├── 27.txt │ ├── 28.txt │ ├── 29.txt │ ├── 3.txt │ ├── 3.txt~ │ ├── 30.txt │ ├── 31.txt │ ├── 32.txt │ ├── 33.txt │ ├── 34.txt │ ├── 35.txt │ ├── 4.txt │ ├── 4.txt~ │ ├── 5.txt │ ├── 5.txt~ │ ├── 6.txt │ ├── 6.txt~ │ ├── 7.txt │ ├── 7.txt~ │ ├── 8.txt │ └── 9.txt │ └── visualize │ ├── 00.jpeg │ ├── 01.jpeg │ ├── 02.jpeg │ ├── 03.jpeg │ ├── 04.jpeg │ ├── 05.jpeg │ ├── 06.jpeg │ ├── 07.jpeg │ ├── 08.jpeg │ ├── 09.jpeg │ ├── 10.jpeg │ ├── 11.jpeg │ ├── 12.jpeg │ ├── 13.jpeg │ ├── 14.jpeg │ ├── 15.jpeg │ ├── 16.jpeg │ ├── 17.jpeg │ ├── 18.jpeg │ ├── 19.jpeg │ ├── 20.jpeg │ ├── 21.jpeg │ ├── 22.jpeg │ ├── 23.jpeg │ ├── 24.jpeg │ ├── 25.jpeg │ ├── 26.jpeg │ ├── 27.jpeg │ ├── 28.jpeg │ ├── 29.jpeg │ ├── 30.jpeg │ ├── 31.jpeg │ ├── 32.jpeg │ ├── 33.jpeg │ ├── 34.jpeg │ ├── 35.jpeg │ └── 36.jpeg ├── shader programs ├── Documenttion.txt ├── Simple.fshader └── Simple.vshader ├── shaders ├── Shader.cpp └── Shader.h ├── util.h └── volume ├── documentation.txt ├── volume.cpp └── volume.h /Camera/documentation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/Camera/documentation.txt -------------------------------------------------------------------------------- /Camera/vCamera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/Camera/vCamera.cpp -------------------------------------------------------------------------------- /Camera/vCamera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/Camera/vCamera.h -------------------------------------------------------------------------------- /Geometry/Mesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/Geometry/Mesh.cpp -------------------------------------------------------------------------------- /Geometry/Mesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/Geometry/Mesh.h -------------------------------------------------------------------------------- /Input/Documentation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/Input/Documentation.txt -------------------------------------------------------------------------------- /Input/input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/Input/input.cpp -------------------------------------------------------------------------------- /Input/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/Input/input.h -------------------------------------------------------------------------------- /PixelBuffer/PixelBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/PixelBuffer/PixelBuffer.cpp -------------------------------------------------------------------------------- /PixelBuffer/PixelBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/PixelBuffer/PixelBuffer.h -------------------------------------------------------------------------------- /PixelBuffer/documentation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/PixelBuffer/documentation.txt -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/README -------------------------------------------------------------------------------- /Silhouettes/Documentation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/Silhouettes/Documentation.txt -------------------------------------------------------------------------------- /Silhouettes/ImageDataArrays.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/Silhouettes/ImageDataArrays.cpp -------------------------------------------------------------------------------- /Silhouettes/ImageDataArrays.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/Silhouettes/ImageDataArrays.h -------------------------------------------------------------------------------- /Silhouettes/frame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/Silhouettes/frame.cpp -------------------------------------------------------------------------------- /Silhouettes/frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/Silhouettes/frame.h -------------------------------------------------------------------------------- /Texture/TextureGL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/Texture/TextureGL.cpp -------------------------------------------------------------------------------- /Texture/TextureGL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/Texture/TextureGL.h -------------------------------------------------------------------------------- /Transforms/documentation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/Transforms/documentation.txt -------------------------------------------------------------------------------- /Transforms/transform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/Transforms/transform.cpp -------------------------------------------------------------------------------- /Transforms/transform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/Transforms/transform.h -------------------------------------------------------------------------------- /Window/Display.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/Window/Display.cpp -------------------------------------------------------------------------------- /Window/Display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/Window/Display.h -------------------------------------------------------------------------------- /Window/Fps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/Window/Fps.cpp -------------------------------------------------------------------------------- /Window/Fps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/Window/Fps.h -------------------------------------------------------------------------------- /cudaKernel/Findsilhouette.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/cudaKernel/Findsilhouette.cu -------------------------------------------------------------------------------- /cudaKernel/render.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/cudaKernel/render.cu -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/main.cpp -------------------------------------------------------------------------------- /resources/Data sets/Action Figure Morpheus/projection/0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Action Figure Morpheus/projection/0.txt -------------------------------------------------------------------------------- /resources/Data sets/Action Figure Morpheus/projection/0.txt~: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/Data sets/Action Figure Morpheus/projection/1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Action Figure Morpheus/projection/1.txt -------------------------------------------------------------------------------- /resources/Data sets/Action Figure Morpheus/projection/1.txt~: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/Data sets/Action Figure Morpheus/projection/2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Action Figure Morpheus/projection/2.txt -------------------------------------------------------------------------------- /resources/Data sets/Action Figure Morpheus/projection/2.txt~: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/Data sets/Action Figure Morpheus/projection/3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Action Figure Morpheus/projection/3.txt -------------------------------------------------------------------------------- /resources/Data sets/Action Figure Morpheus/projection/3.txt~: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/Data sets/Action Figure Morpheus/projection/4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Action Figure Morpheus/projection/4.txt -------------------------------------------------------------------------------- /resources/Data sets/Action Figure Morpheus/projection/4.txt~: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/Data sets/Action Figure Morpheus/projection/5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Action Figure Morpheus/projection/5.txt -------------------------------------------------------------------------------- /resources/Data sets/Action Figure Morpheus/projection/5.txt~: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/Data sets/Action Figure Morpheus/projection/6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Action Figure Morpheus/projection/6.txt -------------------------------------------------------------------------------- /resources/Data sets/Action Figure Morpheus/projection/6.txt~: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/Data sets/Action Figure Morpheus/projection/7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Action Figure Morpheus/projection/7.txt -------------------------------------------------------------------------------- /resources/Data sets/Action Figure Morpheus/projection/7.txt~: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/Data sets/Action Figure Morpheus/projection/camera0.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Action Figure Morpheus/projection/camera0.m -------------------------------------------------------------------------------- /resources/Data sets/Action Figure Morpheus/visualize/00.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Action Figure Morpheus/visualize/00.jpg -------------------------------------------------------------------------------- /resources/Data sets/Action Figure Morpheus/visualize/01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Action Figure Morpheus/visualize/01.jpg -------------------------------------------------------------------------------- /resources/Data sets/Action Figure Morpheus/visualize/02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Action Figure Morpheus/visualize/02.jpg -------------------------------------------------------------------------------- /resources/Data sets/Action Figure Morpheus/visualize/03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Action Figure Morpheus/visualize/03.jpg -------------------------------------------------------------------------------- /resources/Data sets/Action Figure Morpheus/visualize/04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Action Figure Morpheus/visualize/04.jpg -------------------------------------------------------------------------------- /resources/Data sets/Action Figure Morpheus/visualize/05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Action Figure Morpheus/visualize/05.jpg -------------------------------------------------------------------------------- /resources/Data sets/Action Figure Morpheus/visualize/06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Action Figure Morpheus/visualize/06.jpg -------------------------------------------------------------------------------- /resources/Data sets/Action Figure Morpheus/visualize/07.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Action Figure Morpheus/visualize/07.jpg -------------------------------------------------------------------------------- /resources/Data sets/Dino rig/projection/0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Dino rig/projection/0.txt -------------------------------------------------------------------------------- /resources/Data sets/Dino rig/projection/0.txt~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Dino rig/projection/0.txt~ -------------------------------------------------------------------------------- /resources/Data sets/Dino rig/projection/1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Dino rig/projection/1.txt -------------------------------------------------------------------------------- /resources/Data sets/Dino rig/projection/1.txt~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Dino rig/projection/1.txt~ -------------------------------------------------------------------------------- /resources/Data sets/Dino rig/projection/10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Dino rig/projection/10.txt -------------------------------------------------------------------------------- /resources/Data sets/Dino rig/projection/10.txt~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Dino rig/projection/10.txt~ -------------------------------------------------------------------------------- /resources/Data sets/Dino rig/projection/11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Dino rig/projection/11.txt -------------------------------------------------------------------------------- /resources/Data sets/Dino rig/projection/11.txt~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Dino rig/projection/11.txt~ -------------------------------------------------------------------------------- /resources/Data sets/Dino rig/projection/12.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Dino rig/projection/12.txt -------------------------------------------------------------------------------- /resources/Data sets/Dino rig/projection/12.txt~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Dino rig/projection/12.txt~ -------------------------------------------------------------------------------- /resources/Data sets/Dino rig/projection/13.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Dino rig/projection/13.txt -------------------------------------------------------------------------------- /resources/Data sets/Dino rig/projection/13.txt~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Dino rig/projection/13.txt~ -------------------------------------------------------------------------------- /resources/Data sets/Dino rig/projection/14.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Dino rig/projection/14.txt -------------------------------------------------------------------------------- /resources/Data sets/Dino rig/projection/14.txt~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Dino rig/projection/14.txt~ -------------------------------------------------------------------------------- /resources/Data sets/Dino rig/projection/15.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Dino rig/projection/15.txt -------------------------------------------------------------------------------- /resources/Data sets/Dino rig/projection/15.txt~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Dino rig/projection/15.txt~ -------------------------------------------------------------------------------- /resources/Data sets/Dino rig/projection/16.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Dino rig/projection/16.txt -------------------------------------------------------------------------------- /resources/Data sets/Dino rig/projection/16.txt~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Dino rig/projection/16.txt~ -------------------------------------------------------------------------------- /resources/Data sets/Dino rig/projection/17.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Dino rig/projection/17.txt -------------------------------------------------------------------------------- /resources/Data sets/Dino rig/projection/17.txt~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Dino rig/projection/17.txt~ -------------------------------------------------------------------------------- /resources/Data sets/Dino rig/projection/18.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Dino rig/projection/18.txt -------------------------------------------------------------------------------- /resources/Data sets/Dino rig/projection/18.txt~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Dino rig/projection/18.txt~ -------------------------------------------------------------------------------- /resources/Data sets/Dino rig/projection/19.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Dino rig/projection/19.txt -------------------------------------------------------------------------------- /resources/Data sets/Dino rig/projection/19.txt~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Dino rig/projection/19.txt~ -------------------------------------------------------------------------------- /resources/Data sets/Dino rig/projection/2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Dino rig/projection/2.txt -------------------------------------------------------------------------------- /resources/Data sets/Dino rig/projection/2.txt~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Dino rig/projection/2.txt~ -------------------------------------------------------------------------------- /resources/Data sets/Dino rig/projection/20.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Dino rig/projection/20.txt -------------------------------------------------------------------------------- /resources/Data sets/Dino rig/projection/20.txt~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Dino rig/projection/20.txt~ -------------------------------------------------------------------------------- /resources/Data sets/Dino rig/projection/21.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Dino rig/projection/21.txt -------------------------------------------------------------------------------- /resources/Data sets/Dino rig/projection/21.txt~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Dino rig/projection/21.txt~ -------------------------------------------------------------------------------- /resources/Data sets/Dino rig/projection/22.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Dino rig/projection/22.txt -------------------------------------------------------------------------------- /resources/Data sets/Dino rig/projection/22.txt~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Dino rig/projection/22.txt~ -------------------------------------------------------------------------------- /resources/Data sets/Dino rig/projection/23.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Dino rig/projection/23.txt -------------------------------------------------------------------------------- /resources/Data sets/Dino rig/projection/23.txt~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Dino rig/projection/23.txt~ -------------------------------------------------------------------------------- /resources/Data sets/Dino rig/projection/24.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Dino rig/projection/24.txt -------------------------------------------------------------------------------- /resources/Data sets/Dino rig/projection/24.txt~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Dino rig/projection/24.txt~ -------------------------------------------------------------------------------- /resources/Data sets/Dino rig/projection/25.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Dino rig/projection/25.txt -------------------------------------------------------------------------------- /resources/Data sets/Dino rig/projection/25.txt~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Dino rig/projection/25.txt~ -------------------------------------------------------------------------------- /resources/Data sets/Dino rig/projection/26.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Dino rig/projection/26.txt -------------------------------------------------------------------------------- /resources/Data sets/Dino rig/projection/26.txt~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Dino rig/projection/26.txt~ -------------------------------------------------------------------------------- /resources/Data sets/Dino rig/projection/27.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Dino rig/projection/27.txt -------------------------------------------------------------------------------- /resources/Data sets/Dino rig/projection/27.txt~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Dino rig/projection/27.txt~ -------------------------------------------------------------------------------- /resources/Data sets/Dino rig/projection/28.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Dino rig/projection/28.txt -------------------------------------------------------------------------------- /resources/Data sets/Dino rig/projection/28.txt~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Dino rig/projection/28.txt~ -------------------------------------------------------------------------------- /resources/Data sets/Dino rig/projection/29.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Dino rig/projection/29.txt -------------------------------------------------------------------------------- /resources/Data sets/Dino rig/projection/29.txt~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Dino rig/projection/29.txt~ -------------------------------------------------------------------------------- /resources/Data sets/Dino rig/projection/3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Dino rig/projection/3.txt -------------------------------------------------------------------------------- /resources/Data sets/Dino rig/projection/3.txt~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Dino rig/projection/3.txt~ -------------------------------------------------------------------------------- /resources/Data sets/Dino rig/projection/30.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Dino rig/projection/30.txt -------------------------------------------------------------------------------- /resources/Data sets/Dino rig/projection/30.txt~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Dino rig/projection/30.txt~ -------------------------------------------------------------------------------- /resources/Data sets/Dino rig/projection/31.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Dino rig/projection/31.txt -------------------------------------------------------------------------------- /resources/Data sets/Dino rig/projection/31.txt~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Dino rig/projection/31.txt~ -------------------------------------------------------------------------------- /resources/Data sets/Dino rig/projection/32.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Dino rig/projection/32.txt -------------------------------------------------------------------------------- /resources/Data sets/Dino rig/projection/32.txt~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Dino rig/projection/32.txt~ -------------------------------------------------------------------------------- /resources/Data sets/Dino rig/projection/33.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Dino rig/projection/33.txt -------------------------------------------------------------------------------- /resources/Data sets/Dino rig/projection/33.txt~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Dino rig/projection/33.txt~ -------------------------------------------------------------------------------- /resources/Data sets/Dino rig/projection/34.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Dino rig/projection/34.txt -------------------------------------------------------------------------------- /resources/Data sets/Dino rig/projection/34.txt~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Dino rig/projection/34.txt~ -------------------------------------------------------------------------------- /resources/Data sets/Dino rig/projection/35.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Dino rig/projection/35.txt -------------------------------------------------------------------------------- /resources/Data sets/Dino rig/projection/35.txt~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Dino rig/projection/35.txt~ -------------------------------------------------------------------------------- /resources/Data sets/Dino rig/projection/36.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Dino rig/projection/36.txt -------------------------------------------------------------------------------- /resources/Data sets/Dino rig/projection/36.txt~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Dino rig/projection/36.txt~ -------------------------------------------------------------------------------- /resources/Data sets/Dino rig/projection/37.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Dino rig/projection/37.txt -------------------------------------------------------------------------------- /resources/Data sets/Dino rig/projection/38.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Dino rig/projection/38.txt -------------------------------------------------------------------------------- /resources/Data sets/Dino rig/projection/38.txt~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Dino rig/projection/38.txt~ -------------------------------------------------------------------------------- /resources/Data sets/Dino rig/projection/39.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Dino rig/projection/39.txt -------------------------------------------------------------------------------- /resources/Data sets/Dino rig/projection/39.txt~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Dino rig/projection/39.txt~ -------------------------------------------------------------------------------- /resources/Data sets/Dino rig/projection/4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Dino rig/projection/4.txt -------------------------------------------------------------------------------- /resources/Data sets/Dino rig/projection/4.txt~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Dino rig/projection/4.txt~ -------------------------------------------------------------------------------- /resources/Data sets/Dino rig/projection/40.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Dino rig/projection/40.txt -------------------------------------------------------------------------------- /resources/Data sets/Dino rig/projection/40.txt~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Dino rig/projection/40.txt~ -------------------------------------------------------------------------------- /resources/Data sets/Dino rig/projection/41.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Dino rig/projection/41.txt -------------------------------------------------------------------------------- /resources/Data sets/Dino rig/projection/41.txt~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Dino rig/projection/41.txt~ -------------------------------------------------------------------------------- /resources/Data sets/Dino rig/projection/42.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Dino rig/projection/42.txt -------------------------------------------------------------------------------- /resources/Data sets/Dino rig/projection/42.txt~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Dino rig/projection/42.txt~ -------------------------------------------------------------------------------- /resources/Data sets/Dino rig/projection/43.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Dino rig/projection/43.txt -------------------------------------------------------------------------------- /resources/Data sets/Dino rig/projection/43.txt~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Dino rig/projection/43.txt~ -------------------------------------------------------------------------------- /resources/Data sets/Dino rig/projection/44.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Dino rig/projection/44.txt -------------------------------------------------------------------------------- /resources/Data sets/Dino rig/projection/44.txt~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Dino rig/projection/44.txt~ -------------------------------------------------------------------------------- /resources/Data sets/Dino rig/projection/45.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Dino rig/projection/45.txt -------------------------------------------------------------------------------- /resources/Data sets/Dino rig/projection/45.txt~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Dino rig/projection/45.txt~ -------------------------------------------------------------------------------- /resources/Data sets/Dino rig/projection/46.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Dino rig/projection/46.txt -------------------------------------------------------------------------------- /resources/Data sets/Dino rig/projection/46.txt~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Dino rig/projection/46.txt~ -------------------------------------------------------------------------------- /resources/Data sets/Dino rig/projection/47.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Dino rig/projection/47.txt -------------------------------------------------------------------------------- /resources/Data sets/Dino rig/projection/5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Dino rig/projection/5.txt -------------------------------------------------------------------------------- /resources/Data sets/Dino rig/projection/5.txt~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Dino rig/projection/5.txt~ -------------------------------------------------------------------------------- /resources/Data sets/Dino rig/projection/6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Dino rig/projection/6.txt -------------------------------------------------------------------------------- /resources/Data sets/Dino rig/projection/6.txt~: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/Data sets/Dino rig/projection/7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Dino rig/projection/7.txt -------------------------------------------------------------------------------- /resources/Data sets/Dino rig/projection/7.txt~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Dino rig/projection/7.txt~ -------------------------------------------------------------------------------- /resources/Data sets/Dino rig/projection/8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Dino rig/projection/8.txt -------------------------------------------------------------------------------- /resources/Data sets/Dino rig/projection/8.txt~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Dino rig/projection/8.txt~ -------------------------------------------------------------------------------- /resources/Data sets/Dino rig/projection/9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Dino rig/projection/9.txt -------------------------------------------------------------------------------- /resources/Data sets/Dino rig/projection/9.txt~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Dino rig/projection/9.txt~ -------------------------------------------------------------------------------- /resources/Data sets/Dino rig/projection/project.txt~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Dino rig/projection/project.txt~ -------------------------------------------------------------------------------- /resources/Data sets/Dino rig/visualize/00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Dino rig/visualize/00.png -------------------------------------------------------------------------------- /resources/Data sets/Dino rig/visualize/01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Dino rig/visualize/01.png -------------------------------------------------------------------------------- /resources/Data sets/Dino rig/visualize/02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Dino rig/visualize/02.png -------------------------------------------------------------------------------- /resources/Data sets/Dino rig/visualize/03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Dino rig/visualize/03.png -------------------------------------------------------------------------------- /resources/Data sets/Dino rig/visualize/04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Dino rig/visualize/04.png -------------------------------------------------------------------------------- /resources/Data sets/Dino rig/visualize/05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Dino rig/visualize/05.png -------------------------------------------------------------------------------- /resources/Data sets/Dino rig/visualize/06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Dino rig/visualize/06.png -------------------------------------------------------------------------------- /resources/Data sets/Dino rig/visualize/07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Dino rig/visualize/07.png -------------------------------------------------------------------------------- /resources/Data sets/Dino rig/visualize/08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Dino rig/visualize/08.png -------------------------------------------------------------------------------- /resources/Data sets/Dino rig/visualize/09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Dino rig/visualize/09.png -------------------------------------------------------------------------------- /resources/Data sets/Dino rig/visualize/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Dino rig/visualize/10.png -------------------------------------------------------------------------------- /resources/Data sets/Dino rig/visualize/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Dino rig/visualize/11.png -------------------------------------------------------------------------------- /resources/Data sets/Dino rig/visualize/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Dino rig/visualize/12.png -------------------------------------------------------------------------------- /resources/Data sets/Dino rig/visualize/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Dino rig/visualize/13.png -------------------------------------------------------------------------------- /resources/Data sets/Dino rig/visualize/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Dino rig/visualize/14.png -------------------------------------------------------------------------------- /resources/Data sets/Dino rig/visualize/15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Dino rig/visualize/15.png -------------------------------------------------------------------------------- /resources/Data sets/Dino rig/visualize/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Dino rig/visualize/16.png -------------------------------------------------------------------------------- /resources/Data sets/Dino rig/visualize/17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Dino rig/visualize/17.png -------------------------------------------------------------------------------- /resources/Data sets/Dino rig/visualize/18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Dino rig/visualize/18.png -------------------------------------------------------------------------------- /resources/Data sets/Dino rig/visualize/19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Dino rig/visualize/19.png -------------------------------------------------------------------------------- /resources/Data sets/Dino rig/visualize/20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Dino rig/visualize/20.png -------------------------------------------------------------------------------- /resources/Data sets/Dino rig/visualize/21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Dino rig/visualize/21.png -------------------------------------------------------------------------------- /resources/Data sets/Dino rig/visualize/22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Dino rig/visualize/22.png -------------------------------------------------------------------------------- /resources/Data sets/Dino rig/visualize/23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Dino rig/visualize/23.png -------------------------------------------------------------------------------- /resources/Data sets/Dino rig/visualize/24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Dino rig/visualize/24.png -------------------------------------------------------------------------------- /resources/Data sets/Dino rig/visualize/25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Dino rig/visualize/25.png -------------------------------------------------------------------------------- /resources/Data sets/Dino rig/visualize/26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Dino rig/visualize/26.png -------------------------------------------------------------------------------- /resources/Data sets/Dino rig/visualize/27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Dino rig/visualize/27.png -------------------------------------------------------------------------------- /resources/Data sets/Dino rig/visualize/28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Dino rig/visualize/28.png -------------------------------------------------------------------------------- /resources/Data sets/Dino rig/visualize/29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Dino rig/visualize/29.png -------------------------------------------------------------------------------- /resources/Data sets/Dino rig/visualize/30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Dino rig/visualize/30.png -------------------------------------------------------------------------------- /resources/Data sets/Dino rig/visualize/31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Dino rig/visualize/31.png -------------------------------------------------------------------------------- /resources/Data sets/Dino rig/visualize/32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Dino rig/visualize/32.png -------------------------------------------------------------------------------- /resources/Data sets/Dino rig/visualize/33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Dino rig/visualize/33.png -------------------------------------------------------------------------------- /resources/Data sets/Dino rig/visualize/34.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Dino rig/visualize/34.png -------------------------------------------------------------------------------- /resources/Data sets/Dino rig/visualize/35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Dino rig/visualize/35.png -------------------------------------------------------------------------------- /resources/Data sets/Dino rig/visualize/36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Dino rig/visualize/36.png -------------------------------------------------------------------------------- /resources/Data sets/Dino rig/visualize/37.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Dino rig/visualize/37.png -------------------------------------------------------------------------------- /resources/Data sets/Dino rig/visualize/38.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Dino rig/visualize/38.png -------------------------------------------------------------------------------- /resources/Data sets/Dino rig/visualize/39.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Dino rig/visualize/39.png -------------------------------------------------------------------------------- /resources/Data sets/Dino rig/visualize/40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Dino rig/visualize/40.png -------------------------------------------------------------------------------- /resources/Data sets/Dino rig/visualize/41.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Dino rig/visualize/41.png -------------------------------------------------------------------------------- /resources/Data sets/Dino rig/visualize/42.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Dino rig/visualize/42.png -------------------------------------------------------------------------------- /resources/Data sets/Dino rig/visualize/43.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Dino rig/visualize/43.png -------------------------------------------------------------------------------- /resources/Data sets/Dino rig/visualize/44.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Dino rig/visualize/44.png -------------------------------------------------------------------------------- /resources/Data sets/Dino rig/visualize/45.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Dino rig/visualize/45.png -------------------------------------------------------------------------------- /resources/Data sets/Dino rig/visualize/46.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Dino rig/visualize/46.png -------------------------------------------------------------------------------- /resources/Data sets/Dino rig/visualize/47.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Dino rig/visualize/47.png -------------------------------------------------------------------------------- /resources/Data sets/Temple 47 image/projection/0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Temple 47 image/projection/0.txt -------------------------------------------------------------------------------- /resources/Data sets/Temple 47 image/projection/1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Temple 47 image/projection/1.txt -------------------------------------------------------------------------------- /resources/Data sets/Temple 47 image/projection/10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Temple 47 image/projection/10.txt -------------------------------------------------------------------------------- /resources/Data sets/Temple 47 image/projection/11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Temple 47 image/projection/11.txt -------------------------------------------------------------------------------- /resources/Data sets/Temple 47 image/projection/12.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Temple 47 image/projection/12.txt -------------------------------------------------------------------------------- /resources/Data sets/Temple 47 image/projection/13.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Temple 47 image/projection/13.txt -------------------------------------------------------------------------------- /resources/Data sets/Temple 47 image/projection/14.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Temple 47 image/projection/14.txt -------------------------------------------------------------------------------- /resources/Data sets/Temple 47 image/projection/15.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Temple 47 image/projection/15.txt -------------------------------------------------------------------------------- /resources/Data sets/Temple 47 image/projection/16.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Temple 47 image/projection/16.txt -------------------------------------------------------------------------------- /resources/Data sets/Temple 47 image/projection/17.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Temple 47 image/projection/17.txt -------------------------------------------------------------------------------- /resources/Data sets/Temple 47 image/projection/18.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Temple 47 image/projection/18.txt -------------------------------------------------------------------------------- /resources/Data sets/Temple 47 image/projection/19.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Temple 47 image/projection/19.txt -------------------------------------------------------------------------------- /resources/Data sets/Temple 47 image/projection/2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Temple 47 image/projection/2.txt -------------------------------------------------------------------------------- /resources/Data sets/Temple 47 image/projection/20.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Temple 47 image/projection/20.txt -------------------------------------------------------------------------------- /resources/Data sets/Temple 47 image/projection/21.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Temple 47 image/projection/21.txt -------------------------------------------------------------------------------- /resources/Data sets/Temple 47 image/projection/22.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Temple 47 image/projection/22.txt -------------------------------------------------------------------------------- /resources/Data sets/Temple 47 image/projection/23.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Temple 47 image/projection/23.txt -------------------------------------------------------------------------------- /resources/Data sets/Temple 47 image/projection/24.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Temple 47 image/projection/24.txt -------------------------------------------------------------------------------- /resources/Data sets/Temple 47 image/projection/25.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Temple 47 image/projection/25.txt -------------------------------------------------------------------------------- /resources/Data sets/Temple 47 image/projection/26.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Temple 47 image/projection/26.txt -------------------------------------------------------------------------------- /resources/Data sets/Temple 47 image/projection/27.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Temple 47 image/projection/27.txt -------------------------------------------------------------------------------- /resources/Data sets/Temple 47 image/projection/28.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Temple 47 image/projection/28.txt -------------------------------------------------------------------------------- /resources/Data sets/Temple 47 image/projection/29.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Temple 47 image/projection/29.txt -------------------------------------------------------------------------------- /resources/Data sets/Temple 47 image/projection/3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Temple 47 image/projection/3.txt -------------------------------------------------------------------------------- /resources/Data sets/Temple 47 image/projection/30.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Temple 47 image/projection/30.txt -------------------------------------------------------------------------------- /resources/Data sets/Temple 47 image/projection/31.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Temple 47 image/projection/31.txt -------------------------------------------------------------------------------- /resources/Data sets/Temple 47 image/projection/32.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Temple 47 image/projection/32.txt -------------------------------------------------------------------------------- /resources/Data sets/Temple 47 image/projection/33.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Temple 47 image/projection/33.txt -------------------------------------------------------------------------------- /resources/Data sets/Temple 47 image/projection/34.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Temple 47 image/projection/34.txt -------------------------------------------------------------------------------- /resources/Data sets/Temple 47 image/projection/35.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Temple 47 image/projection/35.txt -------------------------------------------------------------------------------- /resources/Data sets/Temple 47 image/projection/36.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Temple 47 image/projection/36.txt -------------------------------------------------------------------------------- /resources/Data sets/Temple 47 image/projection/37.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Temple 47 image/projection/37.txt -------------------------------------------------------------------------------- /resources/Data sets/Temple 47 image/projection/38.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Temple 47 image/projection/38.txt -------------------------------------------------------------------------------- /resources/Data sets/Temple 47 image/projection/39.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Temple 47 image/projection/39.txt -------------------------------------------------------------------------------- /resources/Data sets/Temple 47 image/projection/4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Temple 47 image/projection/4.txt -------------------------------------------------------------------------------- /resources/Data sets/Temple 47 image/projection/40.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Temple 47 image/projection/40.txt -------------------------------------------------------------------------------- /resources/Data sets/Temple 47 image/projection/41.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Temple 47 image/projection/41.txt -------------------------------------------------------------------------------- /resources/Data sets/Temple 47 image/projection/42.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Temple 47 image/projection/42.txt -------------------------------------------------------------------------------- /resources/Data sets/Temple 47 image/projection/43.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Temple 47 image/projection/43.txt -------------------------------------------------------------------------------- /resources/Data sets/Temple 47 image/projection/44.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Temple 47 image/projection/44.txt -------------------------------------------------------------------------------- /resources/Data sets/Temple 47 image/projection/45.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Temple 47 image/projection/45.txt -------------------------------------------------------------------------------- /resources/Data sets/Temple 47 image/projection/46.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Temple 47 image/projection/46.txt -------------------------------------------------------------------------------- /resources/Data sets/Temple 47 image/projection/5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Temple 47 image/projection/5.txt -------------------------------------------------------------------------------- /resources/Data sets/Temple 47 image/projection/6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Temple 47 image/projection/6.txt -------------------------------------------------------------------------------- /resources/Data sets/Temple 47 image/projection/7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Temple 47 image/projection/7.txt -------------------------------------------------------------------------------- /resources/Data sets/Temple 47 image/projection/8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Temple 47 image/projection/8.txt -------------------------------------------------------------------------------- /resources/Data sets/Temple 47 image/projection/9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Temple 47 image/projection/9.txt -------------------------------------------------------------------------------- /resources/Data sets/Temple 47 image/projection/templeR_par.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Temple 47 image/projection/templeR_par.txt -------------------------------------------------------------------------------- /resources/Data sets/Temple 47 image/visualize/00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Temple 47 image/visualize/00.png -------------------------------------------------------------------------------- /resources/Data sets/Temple 47 image/visualize/01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Temple 47 image/visualize/01.png -------------------------------------------------------------------------------- /resources/Data sets/Temple 47 image/visualize/02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Temple 47 image/visualize/02.png -------------------------------------------------------------------------------- /resources/Data sets/Temple 47 image/visualize/03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Temple 47 image/visualize/03.png -------------------------------------------------------------------------------- /resources/Data sets/Temple 47 image/visualize/04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Temple 47 image/visualize/04.png -------------------------------------------------------------------------------- /resources/Data sets/Temple 47 image/visualize/05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Temple 47 image/visualize/05.png -------------------------------------------------------------------------------- /resources/Data sets/Temple 47 image/visualize/06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Temple 47 image/visualize/06.png -------------------------------------------------------------------------------- /resources/Data sets/Temple 47 image/visualize/07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Temple 47 image/visualize/07.png -------------------------------------------------------------------------------- /resources/Data sets/Temple 47 image/visualize/08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Temple 47 image/visualize/08.png -------------------------------------------------------------------------------- /resources/Data sets/Temple 47 image/visualize/09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Temple 47 image/visualize/09.png -------------------------------------------------------------------------------- /resources/Data sets/Temple 47 image/visualize/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Temple 47 image/visualize/10.png -------------------------------------------------------------------------------- /resources/Data sets/Temple 47 image/visualize/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Temple 47 image/visualize/11.png -------------------------------------------------------------------------------- /resources/Data sets/Temple 47 image/visualize/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Temple 47 image/visualize/12.png -------------------------------------------------------------------------------- /resources/Data sets/Temple 47 image/visualize/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Temple 47 image/visualize/13.png -------------------------------------------------------------------------------- /resources/Data sets/Temple 47 image/visualize/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Temple 47 image/visualize/14.png -------------------------------------------------------------------------------- /resources/Data sets/Temple 47 image/visualize/15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Temple 47 image/visualize/15.png -------------------------------------------------------------------------------- /resources/Data sets/Temple 47 image/visualize/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Temple 47 image/visualize/16.png -------------------------------------------------------------------------------- /resources/Data sets/Temple 47 image/visualize/17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Temple 47 image/visualize/17.png -------------------------------------------------------------------------------- /resources/Data sets/Temple 47 image/visualize/18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Temple 47 image/visualize/18.png -------------------------------------------------------------------------------- /resources/Data sets/Temple 47 image/visualize/19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Temple 47 image/visualize/19.png -------------------------------------------------------------------------------- /resources/Data sets/Temple 47 image/visualize/20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Temple 47 image/visualize/20.png -------------------------------------------------------------------------------- /resources/Data sets/Temple 47 image/visualize/21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Temple 47 image/visualize/21.png -------------------------------------------------------------------------------- /resources/Data sets/Temple 47 image/visualize/22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Temple 47 image/visualize/22.png -------------------------------------------------------------------------------- /resources/Data sets/Temple 47 image/visualize/23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Temple 47 image/visualize/23.png -------------------------------------------------------------------------------- /resources/Data sets/Temple 47 image/visualize/24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Temple 47 image/visualize/24.png -------------------------------------------------------------------------------- /resources/Data sets/Temple 47 image/visualize/25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Temple 47 image/visualize/25.png -------------------------------------------------------------------------------- /resources/Data sets/Temple 47 image/visualize/26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Temple 47 image/visualize/26.png -------------------------------------------------------------------------------- /resources/Data sets/Temple 47 image/visualize/27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Temple 47 image/visualize/27.png -------------------------------------------------------------------------------- /resources/Data sets/Temple 47 image/visualize/28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Temple 47 image/visualize/28.png -------------------------------------------------------------------------------- /resources/Data sets/Temple 47 image/visualize/29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Temple 47 image/visualize/29.png -------------------------------------------------------------------------------- /resources/Data sets/Temple 47 image/visualize/30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Temple 47 image/visualize/30.png -------------------------------------------------------------------------------- /resources/Data sets/Temple 47 image/visualize/31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Temple 47 image/visualize/31.png -------------------------------------------------------------------------------- /resources/Data sets/Temple 47 image/visualize/32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Temple 47 image/visualize/32.png -------------------------------------------------------------------------------- /resources/Data sets/Temple 47 image/visualize/33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Temple 47 image/visualize/33.png -------------------------------------------------------------------------------- /resources/Data sets/Temple 47 image/visualize/34.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Temple 47 image/visualize/34.png -------------------------------------------------------------------------------- /resources/Data sets/Temple 47 image/visualize/35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Temple 47 image/visualize/35.png -------------------------------------------------------------------------------- /resources/Data sets/Temple 47 image/visualize/36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Temple 47 image/visualize/36.png -------------------------------------------------------------------------------- /resources/Data sets/Temple 47 image/visualize/37.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Temple 47 image/visualize/37.png -------------------------------------------------------------------------------- /resources/Data sets/Temple 47 image/visualize/38.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Temple 47 image/visualize/38.png -------------------------------------------------------------------------------- /resources/Data sets/Temple 47 image/visualize/39.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Temple 47 image/visualize/39.png -------------------------------------------------------------------------------- /resources/Data sets/Temple 47 image/visualize/40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Temple 47 image/visualize/40.png -------------------------------------------------------------------------------- /resources/Data sets/Temple 47 image/visualize/41.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Temple 47 image/visualize/41.png -------------------------------------------------------------------------------- /resources/Data sets/Temple 47 image/visualize/42.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Temple 47 image/visualize/42.png -------------------------------------------------------------------------------- /resources/Data sets/Temple 47 image/visualize/43.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Temple 47 image/visualize/43.png -------------------------------------------------------------------------------- /resources/Data sets/Temple 47 image/visualize/44.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Temple 47 image/visualize/44.png -------------------------------------------------------------------------------- /resources/Data sets/Temple 47 image/visualize/45.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Temple 47 image/visualize/45.png -------------------------------------------------------------------------------- /resources/Data sets/Temple 47 image/visualize/46.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Temple 47 image/visualize/46.png -------------------------------------------------------------------------------- /resources/Data sets/Toy Dinosaur/projection/0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Toy Dinosaur/projection/0.txt -------------------------------------------------------------------------------- /resources/Data sets/Toy Dinosaur/projection/0.txt~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Toy Dinosaur/projection/0.txt~ -------------------------------------------------------------------------------- /resources/Data sets/Toy Dinosaur/projection/1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Toy Dinosaur/projection/1.txt -------------------------------------------------------------------------------- /resources/Data sets/Toy Dinosaur/projection/1.txt~: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/Data sets/Toy Dinosaur/projection/10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Toy Dinosaur/projection/10.txt -------------------------------------------------------------------------------- /resources/Data sets/Toy Dinosaur/projection/11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Toy Dinosaur/projection/11.txt -------------------------------------------------------------------------------- /resources/Data sets/Toy Dinosaur/projection/12.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Toy Dinosaur/projection/12.txt -------------------------------------------------------------------------------- /resources/Data sets/Toy Dinosaur/projection/13.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Toy Dinosaur/projection/13.txt -------------------------------------------------------------------------------- /resources/Data sets/Toy Dinosaur/projection/14.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Toy Dinosaur/projection/14.txt -------------------------------------------------------------------------------- /resources/Data sets/Toy Dinosaur/projection/15.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Toy Dinosaur/projection/15.txt -------------------------------------------------------------------------------- /resources/Data sets/Toy Dinosaur/projection/16.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Toy Dinosaur/projection/16.txt -------------------------------------------------------------------------------- /resources/Data sets/Toy Dinosaur/projection/17.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Toy Dinosaur/projection/17.txt -------------------------------------------------------------------------------- /resources/Data sets/Toy Dinosaur/projection/18.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Toy Dinosaur/projection/18.txt -------------------------------------------------------------------------------- /resources/Data sets/Toy Dinosaur/projection/19.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Toy Dinosaur/projection/19.txt -------------------------------------------------------------------------------- /resources/Data sets/Toy Dinosaur/projection/2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Toy Dinosaur/projection/2.txt -------------------------------------------------------------------------------- /resources/Data sets/Toy Dinosaur/projection/2.txt~: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/Data sets/Toy Dinosaur/projection/20.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Toy Dinosaur/projection/20.txt -------------------------------------------------------------------------------- /resources/Data sets/Toy Dinosaur/projection/21.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Toy Dinosaur/projection/21.txt -------------------------------------------------------------------------------- /resources/Data sets/Toy Dinosaur/projection/22.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Toy Dinosaur/projection/22.txt -------------------------------------------------------------------------------- /resources/Data sets/Toy Dinosaur/projection/23.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Toy Dinosaur/projection/23.txt -------------------------------------------------------------------------------- /resources/Data sets/Toy Dinosaur/projection/24.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Toy Dinosaur/projection/24.txt -------------------------------------------------------------------------------- /resources/Data sets/Toy Dinosaur/projection/25.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Toy Dinosaur/projection/25.txt -------------------------------------------------------------------------------- /resources/Data sets/Toy Dinosaur/projection/26.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Toy Dinosaur/projection/26.txt -------------------------------------------------------------------------------- /resources/Data sets/Toy Dinosaur/projection/27.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Toy Dinosaur/projection/27.txt -------------------------------------------------------------------------------- /resources/Data sets/Toy Dinosaur/projection/28.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Toy Dinosaur/projection/28.txt -------------------------------------------------------------------------------- /resources/Data sets/Toy Dinosaur/projection/29.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Toy Dinosaur/projection/29.txt -------------------------------------------------------------------------------- /resources/Data sets/Toy Dinosaur/projection/3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Toy Dinosaur/projection/3.txt -------------------------------------------------------------------------------- /resources/Data sets/Toy Dinosaur/projection/3.txt~: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/Data sets/Toy Dinosaur/projection/30.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Toy Dinosaur/projection/30.txt -------------------------------------------------------------------------------- /resources/Data sets/Toy Dinosaur/projection/31.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Toy Dinosaur/projection/31.txt -------------------------------------------------------------------------------- /resources/Data sets/Toy Dinosaur/projection/32.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Toy Dinosaur/projection/32.txt -------------------------------------------------------------------------------- /resources/Data sets/Toy Dinosaur/projection/33.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Toy Dinosaur/projection/33.txt -------------------------------------------------------------------------------- /resources/Data sets/Toy Dinosaur/projection/34.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Toy Dinosaur/projection/34.txt -------------------------------------------------------------------------------- /resources/Data sets/Toy Dinosaur/projection/35.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Toy Dinosaur/projection/35.txt -------------------------------------------------------------------------------- /resources/Data sets/Toy Dinosaur/projection/4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Toy Dinosaur/projection/4.txt -------------------------------------------------------------------------------- /resources/Data sets/Toy Dinosaur/projection/4.txt~: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/Data sets/Toy Dinosaur/projection/5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Toy Dinosaur/projection/5.txt -------------------------------------------------------------------------------- /resources/Data sets/Toy Dinosaur/projection/5.txt~: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/Data sets/Toy Dinosaur/projection/6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Toy Dinosaur/projection/6.txt -------------------------------------------------------------------------------- /resources/Data sets/Toy Dinosaur/projection/6.txt~: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/Data sets/Toy Dinosaur/projection/7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Toy Dinosaur/projection/7.txt -------------------------------------------------------------------------------- /resources/Data sets/Toy Dinosaur/projection/7.txt~: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/Data sets/Toy Dinosaur/projection/8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Toy Dinosaur/projection/8.txt -------------------------------------------------------------------------------- /resources/Data sets/Toy Dinosaur/projection/9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Toy Dinosaur/projection/9.txt -------------------------------------------------------------------------------- /resources/Data sets/Toy Dinosaur/visualize/00.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Toy Dinosaur/visualize/00.jpeg -------------------------------------------------------------------------------- /resources/Data sets/Toy Dinosaur/visualize/01.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Toy Dinosaur/visualize/01.jpeg -------------------------------------------------------------------------------- /resources/Data sets/Toy Dinosaur/visualize/02.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Toy Dinosaur/visualize/02.jpeg -------------------------------------------------------------------------------- /resources/Data sets/Toy Dinosaur/visualize/03.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Toy Dinosaur/visualize/03.jpeg -------------------------------------------------------------------------------- /resources/Data sets/Toy Dinosaur/visualize/04.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Toy Dinosaur/visualize/04.jpeg -------------------------------------------------------------------------------- /resources/Data sets/Toy Dinosaur/visualize/05.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Toy Dinosaur/visualize/05.jpeg -------------------------------------------------------------------------------- /resources/Data sets/Toy Dinosaur/visualize/06.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Toy Dinosaur/visualize/06.jpeg -------------------------------------------------------------------------------- /resources/Data sets/Toy Dinosaur/visualize/07.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Toy Dinosaur/visualize/07.jpeg -------------------------------------------------------------------------------- /resources/Data sets/Toy Dinosaur/visualize/08.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Toy Dinosaur/visualize/08.jpeg -------------------------------------------------------------------------------- /resources/Data sets/Toy Dinosaur/visualize/09.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Toy Dinosaur/visualize/09.jpeg -------------------------------------------------------------------------------- /resources/Data sets/Toy Dinosaur/visualize/10.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Toy Dinosaur/visualize/10.jpeg -------------------------------------------------------------------------------- /resources/Data sets/Toy Dinosaur/visualize/11.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Toy Dinosaur/visualize/11.jpeg -------------------------------------------------------------------------------- /resources/Data sets/Toy Dinosaur/visualize/12.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Toy Dinosaur/visualize/12.jpeg -------------------------------------------------------------------------------- /resources/Data sets/Toy Dinosaur/visualize/13.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Toy Dinosaur/visualize/13.jpeg -------------------------------------------------------------------------------- /resources/Data sets/Toy Dinosaur/visualize/14.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Toy Dinosaur/visualize/14.jpeg -------------------------------------------------------------------------------- /resources/Data sets/Toy Dinosaur/visualize/15.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Toy Dinosaur/visualize/15.jpeg -------------------------------------------------------------------------------- /resources/Data sets/Toy Dinosaur/visualize/16.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Toy Dinosaur/visualize/16.jpeg -------------------------------------------------------------------------------- /resources/Data sets/Toy Dinosaur/visualize/17.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Toy Dinosaur/visualize/17.jpeg -------------------------------------------------------------------------------- /resources/Data sets/Toy Dinosaur/visualize/18.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Toy Dinosaur/visualize/18.jpeg -------------------------------------------------------------------------------- /resources/Data sets/Toy Dinosaur/visualize/19.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Toy Dinosaur/visualize/19.jpeg -------------------------------------------------------------------------------- /resources/Data sets/Toy Dinosaur/visualize/20.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Toy Dinosaur/visualize/20.jpeg -------------------------------------------------------------------------------- /resources/Data sets/Toy Dinosaur/visualize/21.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Toy Dinosaur/visualize/21.jpeg -------------------------------------------------------------------------------- /resources/Data sets/Toy Dinosaur/visualize/22.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Toy Dinosaur/visualize/22.jpeg -------------------------------------------------------------------------------- /resources/Data sets/Toy Dinosaur/visualize/23.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Toy Dinosaur/visualize/23.jpeg -------------------------------------------------------------------------------- /resources/Data sets/Toy Dinosaur/visualize/24.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Toy Dinosaur/visualize/24.jpeg -------------------------------------------------------------------------------- /resources/Data sets/Toy Dinosaur/visualize/25.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Toy Dinosaur/visualize/25.jpeg -------------------------------------------------------------------------------- /resources/Data sets/Toy Dinosaur/visualize/26.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Toy Dinosaur/visualize/26.jpeg -------------------------------------------------------------------------------- /resources/Data sets/Toy Dinosaur/visualize/27.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Toy Dinosaur/visualize/27.jpeg -------------------------------------------------------------------------------- /resources/Data sets/Toy Dinosaur/visualize/28.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Toy Dinosaur/visualize/28.jpeg -------------------------------------------------------------------------------- /resources/Data sets/Toy Dinosaur/visualize/29.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Toy Dinosaur/visualize/29.jpeg -------------------------------------------------------------------------------- /resources/Data sets/Toy Dinosaur/visualize/30.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Toy Dinosaur/visualize/30.jpeg -------------------------------------------------------------------------------- /resources/Data sets/Toy Dinosaur/visualize/31.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Toy Dinosaur/visualize/31.jpeg -------------------------------------------------------------------------------- /resources/Data sets/Toy Dinosaur/visualize/32.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Toy Dinosaur/visualize/32.jpeg -------------------------------------------------------------------------------- /resources/Data sets/Toy Dinosaur/visualize/33.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Toy Dinosaur/visualize/33.jpeg -------------------------------------------------------------------------------- /resources/Data sets/Toy Dinosaur/visualize/34.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Toy Dinosaur/visualize/34.jpeg -------------------------------------------------------------------------------- /resources/Data sets/Toy Dinosaur/visualize/35.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Toy Dinosaur/visualize/35.jpeg -------------------------------------------------------------------------------- /resources/Data sets/Toy Dinosaur/visualize/36.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/resources/Data sets/Toy Dinosaur/visualize/36.jpeg -------------------------------------------------------------------------------- /shader programs/Documenttion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/shader programs/Documenttion.txt -------------------------------------------------------------------------------- /shader programs/Simple.fshader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/shader programs/Simple.fshader -------------------------------------------------------------------------------- /shader programs/Simple.vshader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/shader programs/Simple.vshader -------------------------------------------------------------------------------- /shaders/Shader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/shaders/Shader.cpp -------------------------------------------------------------------------------- /shaders/Shader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/shaders/Shader.h -------------------------------------------------------------------------------- /util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/util.h -------------------------------------------------------------------------------- /volume/documentation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/volume/documentation.txt -------------------------------------------------------------------------------- /volume/volume.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/volume/volume.cpp -------------------------------------------------------------------------------- /volume/volume.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelliceSaouli/GIBVH/HEAD/volume/volume.h --------------------------------------------------------------------------------