-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdata.json
More file actions
47 lines (47 loc) · 1.43 KB
/
data.json
File metadata and controls
47 lines (47 loc) · 1.43 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
[
{
"name": "Tree pattern generator",
"file_name": "tree_pattern.html",
"description": "Generates colorful patterns based on a tree structure"
},
{
"name": "2D L-system engine",
"file_name": "l_system.html",
"description": "Generate patterns by defining rules in an L-system"
},
{
"name": "Radially Symmetric Drawing",
"file_name": "draw.html",
"description": "A simple paint tool to draw radially symmetrical images"
},
{
"name": "Go game",
"file_name": "go.html",
"description": "It's Go. Not all rules are implemented yet."
},
{
"name": "Tron game",
"file_name": "tron.html",
"description": "A Tron knockoff for up to 4 players"
},
{
"name": "Elo system simulation",
"file_name": "elo_system.html",
"description": "Simulates players in a league with an Elo rating system"
},
{
"name": "Arbitrary-degree curve fitting",
"file_name": "curve_fitting.html",
"description": "Fits curves of arbitrary degree to points"
},
{
"name": "Life",
"file_name": "life.html",
"description": "Conway's Game of Life"
},
{
"name": "Ultra basic 3D projection demo",
"file_name": "3d.html",
"description": "I tried to implement a 3d projection without looking at any algorithms or equations using just what I can remember from my undergrad graphics course. I have no idea what I'm doing. It breaks pretty bad sometimes. Very incomplete."
}
]