Skip to content

Latest commit

 

History

History
7 lines (4 loc) · 820 Bytes

README.md

File metadata and controls

7 lines (4 loc) · 820 Bytes

cuda-boids

A quick experiment in OpenGL / CUDA interop, using the boids steering model as a focus. Boids are drawn as single points and rendered from device memory. A buffer for boid objects is created with OpenGL, registered with CUDA, and then the CUDA kernel moves each boid by accessing that buffer memory directly, requiring no transfer between host and device memory.

CudaBoids_EdO5CMbuOH.mp4

Boids are colored according to their heading (X component mapped to R channel, Y component mapped to G channel, Z component mapped to B channel), allowing for a primitive visualization of groupings. The movement rules followed by each boid can be weighted by constants in the program, and affect the overall order of the system.