Animation added

This commit is contained in:
2025-11-20 23:38:31 -05:00
parent 9197e464a5
commit cf010974dd
8 changed files with 304 additions and 22 deletions

View File

@@ -148,7 +148,12 @@ GET /api/analyze/<maze_id>
#### Download Maze Image
```bash
GET /api/download/<maze_id>?solution=true&solver=bfs
GET /api/download/<maze_id>?solution=true&solver=bfs&format=png
# Parameters:
# - solution: true/false (include solution path)
# - solver: dfs/bfs (which algorithm to use)
# - format: png/jpg (image format, defaults to png)
```
#### Benchmark Algorithms