This repository has been archived by the owner on Aug 2, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 56
/
mkdocs.yml
89 lines (83 loc) · 2.4 KB
/
mkdocs.yml
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
site_name: klein
theme:
name: material
custom_dir: 'theme'
palette:
primary: 'teal'
accent: 'deep orange'
favicon: 'img/favicon.ico'
feature:
tabs: false
logo:
icon: 'flip'
site_url: https://jeremyong.com/klein/
repo_url: https://github.com/jeremyong/klein/
edit_uri: ''
repo_name: 'jeremyong/klein'
site_description: Klein - Realtime Projective Geometric Algebra
site_author: Jeremy Ong
copyright: 'Klein Copyright © 2020 Jeremy Ong'
google_analytics: ['UA-10576233-1', 'auto']
plugins:
- search
nav:
- 'Home': 'index.md'
- 'Quick Start': 'quickstart.md'
- 'API':
- 'Overview': 'overview.md'
- 'GPU Support': 'gpu.md'
- 'Plane': 'api/plane.md'
- 'Lines': 'api/lines.md'
- 'Point': 'api/point.md'
- 'Direction': 'api/dir.md'
- 'Rotor': 'api/rotor.md'
- 'Translator': 'api/translator.md'
- 'Motor': 'api/motor.md'
- 'Geometric Product': 'api/gp.md'
- 'Exterior Product': 'api/ext.md'
- 'Poincare Dual': 'api/dual.md'
- 'Regressive Product': 'api/reg.md'
- 'Inner Product': 'api/dot.md'
- 'Exponential/Logarithm': 'api/exp_log.md'
- 'Projections': 'api/proj.md'
- 'Dual Numbers': 'api/dualn.md'
- 'Geometry Potpourri': 'geometry-potpourri.md'
- 'Tutorial':
- 'Introduction': 'tutorial/intro.md'
- 'Exterior Algebra': 'tutorial/exterior_algebra.md'
- 'Case Studies':
- 'Basic Skeletal Animation': 'case_studies/ga_skeletal_animation.md'
- 'Klein Shell': 'shell.md'
- 'Performance': 'perf.md'
- 'Discord': 'discord.md'
- 'References': 'references.md'
extra_css:
- 'css/extra.css'
- 'https://cdn.jsdelivr.net/npm/[email protected]/dist/katex.min.css'
extra_javascript:
- 'js/extra.js'
- 'https://cdn.jsdelivr.net/npm/[email protected]/dist/katex.min.js'
- 'https://cdn.jsdelivr.net/npm/[email protected]'
markdown_extensions:
- abbr
- admonition
- attr_list
- codehilite
- def_list
- footnotes
- pymdownx.arithmatex:
generic: True
- pymdownx.details
- pymdownx.superfences
- pymdownx.mark
- pymdownx.extrarawhtml
- toc
- sane_lists
extra:
social:
- type: 'github'
link: 'https://github.com/jeremyong'
- type: 'twitter'
link: 'https://twitter.com/m_ninepoints'
- type: 'linkedin'
link: 'https://www.linkedin.com/in/jeremycong'