├── .gitattributes ├── .gitignore ├── GLCamera.cpp ├── GLCamera.h ├── Lumigraph.cpp ├── Lumigraph.h ├── README.md ├── ReadInDataSet.cpp ├── ReadInDataSet.h ├── Test ├── Building.xml ├── Building5.JPG ├── Building5.png ├── Building6.JPG ├── Building6.png ├── Building_camera.xml ├── Building_parameters.txt └── Building_proxy.txt ├── XForm.h ├── dfsFolder.cpp ├── dfsFolder.h └── main.cpp /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croft123/LumigraphRendering/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croft123/LumigraphRendering/HEAD/.gitignore -------------------------------------------------------------------------------- /GLCamera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croft123/LumigraphRendering/HEAD/GLCamera.cpp -------------------------------------------------------------------------------- /GLCamera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croft123/LumigraphRendering/HEAD/GLCamera.h -------------------------------------------------------------------------------- /Lumigraph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croft123/LumigraphRendering/HEAD/Lumigraph.cpp -------------------------------------------------------------------------------- /Lumigraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croft123/LumigraphRendering/HEAD/Lumigraph.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croft123/LumigraphRendering/HEAD/README.md -------------------------------------------------------------------------------- /ReadInDataSet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croft123/LumigraphRendering/HEAD/ReadInDataSet.cpp -------------------------------------------------------------------------------- /ReadInDataSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croft123/LumigraphRendering/HEAD/ReadInDataSet.h -------------------------------------------------------------------------------- /Test/Building.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croft123/LumigraphRendering/HEAD/Test/Building.xml -------------------------------------------------------------------------------- /Test/Building5.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croft123/LumigraphRendering/HEAD/Test/Building5.JPG -------------------------------------------------------------------------------- /Test/Building5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croft123/LumigraphRendering/HEAD/Test/Building5.png -------------------------------------------------------------------------------- /Test/Building6.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croft123/LumigraphRendering/HEAD/Test/Building6.JPG -------------------------------------------------------------------------------- /Test/Building6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croft123/LumigraphRendering/HEAD/Test/Building6.png -------------------------------------------------------------------------------- /Test/Building_camera.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croft123/LumigraphRendering/HEAD/Test/Building_camera.xml -------------------------------------------------------------------------------- /Test/Building_parameters.txt: -------------------------------------------------------------------------------- 1 | 3264 2448 2 2 | 5 5 -------------------------------------------------------------------------------- /Test/Building_proxy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croft123/LumigraphRendering/HEAD/Test/Building_proxy.txt -------------------------------------------------------------------------------- /XForm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croft123/LumigraphRendering/HEAD/XForm.h -------------------------------------------------------------------------------- /dfsFolder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croft123/LumigraphRendering/HEAD/dfsFolder.cpp -------------------------------------------------------------------------------- /dfsFolder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croft123/LumigraphRendering/HEAD/dfsFolder.h -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croft123/LumigraphRendering/HEAD/main.cpp --------------------------------------------------------------------------------