Pages tagged Algorithms
-
Pathfinding
?
-
3D Raycasting
The Digital Differential Analyzer (
DDA) algorithm, adapted to 3D, is exactly the thing one needs to travel along a line (or a ray) through a grid of voxels. -
Sliding Window
A sliding window represents a movable view/slice of a larger dataset/field, to make accessing data-elements both faster and more convenient; they can be implemented in several ways...
-
Phased Generation
Phased generation is a process wherein world generation is separated into specialized phases, each only doing 'one thing', caching the result, and feeding into the next phase, on and on until some final 'completed' phase is reached.