/bɛnd͡ʒəmɪn mæn/
Computer Science and Linguistics @ UCLA '27
Hi, I'm Ben. I'm a student at UCLA, and I'm passionate about creative design and making an impact. I'm always looking for new opportunities to learn and grow. Check our my projects and resume/CV.
Origin ●
▲ Destination
This is a p5.js visualization of map pathfinding algorithms. You're probably looking at San Francisco, Los Angeles, or New York City.
The map data is from OpenStreetMap's Overpass API, with reverse geocoding also from OSM.
The A* algorithm here uses a heuristic function of Eudlidean distance.
This is a p5.js visualization of maze generation and solver algorithms. The maze is generated using depth-first search.
The A* algorithm uses a heuristic function of Manhattan distance, which is displayed in each visited cell of the maze.
This is a p5.js simulation of some balls bouncing around a polar curve, particularly a Rose curve of the form
\( r(\theta) = 1 + \frac{\sin(a \theta)}{a} \)
where \( a \) is the number of petals.