├── .gitignore ├── CMakeLists.txt ├── Grid3D.h ├── LICENSE ├── README.md ├── Ray.h ├── Vec3.h ├── amanatidesWooAlgorithm.cpp ├── amanatidesWooAlgorithm.h └── overview ├── .DS_Store ├── FastVoxelTraversalOverview.md └── images ├── 2d_grid.png ├── ray_dir.png ├── ray_dir2.png ├── ray_intersection.png ├── tDelta.png └── tMax.png /.gitignore: -------------------------------------------------------------------------------- 1 | # Project exclude paths 2 | /cmake-build-debug/ -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgyurgyik/fast-voxel-traversal-algorithm/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Grid3D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgyurgyik/fast-voxel-traversal-algorithm/HEAD/Grid3D.h -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgyurgyik/fast-voxel-traversal-algorithm/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgyurgyik/fast-voxel-traversal-algorithm/HEAD/README.md -------------------------------------------------------------------------------- /Ray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgyurgyik/fast-voxel-traversal-algorithm/HEAD/Ray.h -------------------------------------------------------------------------------- /Vec3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgyurgyik/fast-voxel-traversal-algorithm/HEAD/Vec3.h -------------------------------------------------------------------------------- /amanatidesWooAlgorithm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgyurgyik/fast-voxel-traversal-algorithm/HEAD/amanatidesWooAlgorithm.cpp -------------------------------------------------------------------------------- /amanatidesWooAlgorithm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgyurgyik/fast-voxel-traversal-algorithm/HEAD/amanatidesWooAlgorithm.h -------------------------------------------------------------------------------- /overview/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgyurgyik/fast-voxel-traversal-algorithm/HEAD/overview/.DS_Store -------------------------------------------------------------------------------- /overview/FastVoxelTraversalOverview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgyurgyik/fast-voxel-traversal-algorithm/HEAD/overview/FastVoxelTraversalOverview.md -------------------------------------------------------------------------------- /overview/images/2d_grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgyurgyik/fast-voxel-traversal-algorithm/HEAD/overview/images/2d_grid.png -------------------------------------------------------------------------------- /overview/images/ray_dir.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgyurgyik/fast-voxel-traversal-algorithm/HEAD/overview/images/ray_dir.png -------------------------------------------------------------------------------- /overview/images/ray_dir2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgyurgyik/fast-voxel-traversal-algorithm/HEAD/overview/images/ray_dir2.png -------------------------------------------------------------------------------- /overview/images/ray_intersection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgyurgyik/fast-voxel-traversal-algorithm/HEAD/overview/images/ray_intersection.png -------------------------------------------------------------------------------- /overview/images/tDelta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgyurgyik/fast-voxel-traversal-algorithm/HEAD/overview/images/tDelta.png -------------------------------------------------------------------------------- /overview/images/tMax.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgyurgyik/fast-voxel-traversal-algorithm/HEAD/overview/images/tMax.png --------------------------------------------------------------------------------