Ray voxel intersection

2019-02-17 17:06发布

I want to test for an intersection of a ray with a voxel field.

I could naively crawl through the voxel field by calculating a ray-box intersection with the edge of the current voxel, then doing the same for the next voxel until I hit something. But isn't there a faster way to trace through a voxel field? I was thinking something along the lines of Bresenham's line algorithm in 3D, something that could quickly give me all of the cells a given line intersects. Anyone done this before?

Due to certian limitations and the fact that these ray traces aren't happening that often, I do not want to build an octree or any other data structure.

标签: c# math ray voxel
2条回答
地球回转人心会变
2楼-- · 2019-02-17 17:30

I believe the octree-algorithm does what your asking for.

查看更多
姐就是有狂的资本
3楼-- · 2019-02-17 17:48

Here's an implementation of Bresenham's in 3D. It's in matlab; if you don't speak that you can see a C implementation here.

查看更多
登录 后发表回答