-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path_quarto.yml
More file actions
78 lines (74 loc) · 2.21 KB
/
_quarto.yml
File metadata and controls
78 lines (74 loc) · 2.21 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
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
project:
type: website
output-dir: _site
website:
title: jaxCAD
description: Differentiable CAD with JAX and SDFs
navbar:
left:
- text: Get Started
href: docs/getting-started.qmd
- text: Examples
menu:
- text: Basics
href: examples/basics.ipynb
- text: Render
href: examples/render.ipynb
- text: Constraints
href: examples/constraints.ipynb
- text: Optimization
href: examples/optimization.ipynb
- text: Constrained Optimization
href: examples/constrained_optimization.ipynb
- text: API Reference
href: reference/index.qmd
right:
- icon: github
href: https://github.com/andrinr/jaxcad
format:
html:
theme: cosmo
toc: true
toc-depth: 3
code-copy: true
execute:
enabled: false # render stored outputs, don't re-execute
quartodoc:
package: jaxcad
dir: reference
parser: google
sections:
- title: Parameter Extraction
contents:
- extraction.extract_parameters
- title: Functionalize
contents:
- functionalize.functionalize
- render.functionalize.functionalize_render
- title: Parametrization
contents:
- parametrization.to_normalized
- parametrization.from_normalized
- parametrization.compute_param_scales
- title: Constraints — types
contents:
- constraints.types.base.Constraint
- constraints.types.distance.DistanceConstraint
- constraints.types.angle.AngleConstraint
- constraints.types.parallel.ParallelConstraint
- constraints.types.perpendicular.PerpendicularConstraint
- title: Constraints — solver
contents:
- constraints.solve.solve_constraints
- constraints.solve.project_to_manifold
- constraints.solve.constraint_residuals
- constraints.solve.make_manifold_projection
- title: Geometry
contents:
- geometry.parameters.Vector
- geometry.parameters.Scalar
- title: Render
contents:
- render.raymarch.render.raymarch
- render.raymarch.render.render_raymarched
- render.marching_cubes.render_marching_cubes