-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
95 lines (88 loc) · 2.33 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
90
91
92
93
94
95
site_name: Compute Graphics Notes
site_url: https://anirudh-s-kumar.github.io/cg-notes/
repo_name: Anirudh-S-Kumar/cg-notes
repo_url: https://github.com/Anirudh-S-Kumar/cg-notes
edit_uri: edit/main/docs/
theme:
name: material
features:
- announce.dismiss
- content.action.edit
- content.action.view
- content.code.annotate
- content.code.copy
- content.tooltips
- navigation.footer
- navigation.indexes
- navigation.instant
- navigation.instant.prefetch
- navigation.instant.progress
- navigation.sections
# - navigation.tabs
# - navigation.top
- navigation.tracking
- search.highlight
- search.share
- search.suggest
- toc.follow
language: en
palette:
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: indigo
accent: indigo
extra_javascript:
- js/mathjax.js
- https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js
- https://unpkg.com/mathjax@3/es5/tex-mml-chtml.js
extra_css:
- 'css/custom_list.css'
plugins:
- social
- search:
separator: '[\s\u200b\-_,:!=\[\]()"`/]+|\.(?!\d)|&[lg]t;|(?!\b)(?=[A-Z][a-z])'
- minify:
minify_html: true
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.snippets
- admonition
- pymdownx.arithmatex:
generic: true
- footnotes
- pymdownx.details
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.mark
- attr_list
- md_in_html
- pymdownx.critic
- pymdownx.caret
- pymdownx.keys
- pymdownx.mark
- pymdownx.tilde
- tables
- def_list
- pymdownx.tasklist:
custom_checkbox: true
nav:
- Curves: curves.md
- Surfaces and Volumes: surfaces_volumes.md
- Mesh: mesh.md
- Geometric Transformations: transformations.md
- Viewing and Projections: viewing.md
- Colors: colors.md
- Lighting and Shading: lighting.md
- Ray Tracing : ray_tracing.md
- Advanced Ray Tracing: advanced_ray_tracing.md
- Rasterization: rasterization.md
- Texture Mapping: texture_mapping.md
- Visibility Determination: visibility_determination.md
- Implicit Modelling and Reconstruction: implicit_modelling.md
- Animation: animations.md
- Parametric Curves: parametric_curves.md