gw 发帖数: 2175 | 1 假设空间被均匀分隔成了立体方格。任意给定两点,如何最有效地找到这两点连线穿过
了哪些格子? | h*******e 发帖数: 225 | 2 google bresenham's line algorithm and its 3d generalization
【在 gw 的大作中提到】 : 假设空间被均匀分隔成了立体方格。任意给定两点,如何最有效地找到这两点连线穿过 : 了哪些格子?
| b***e 发帖数: 1419 | 3 Besides bresenham's line algorithm, you can try binary method, e.g, find
middle point, and split the line segment, and then recursively call the
algorithm. |
|