-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathmkdocs.yml
139 lines (129 loc) · 4.91 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
site_name: Cadwork Python Documentation
repo_name: cwapi3d/cwapi3dpython
repo_url: https://github.com/cwapi3d/cwapi3dpython
copyright: Copyright 2024 Cadwork
site_url: https://python.cadwork.dev/
theme:
name: material
logo: cw_logo.svg
favicon: cw_logo.svg
version: V30
palette:
- scheme: default
toggle:
icon: material/brightness-7
name: Switch to dark mode
- scheme: slate
toggle:
icon: material/brightness-4
name: Switch to light mode
features:
- search.suggest
- search.highlight
- navigation.tabs
- content.code.copy
nav:
- Home:
- index.md
- Getting Started: get_started.md
- Packages and Modules: modules.md
- Debugging: debug.md
- Community: community.md
- Reference:
- Attribute Controller: documentation/attribute_controller.md
- BIM Controller: documentation/bim_controller.md
- Cadwork:
- Element Module Properties: documentation/element_module_properties.md
- Element Type: documentation/element_type.md
- Process Type: documentation/process_type.md
- Point 3D: documentation/point_3d.md
- Enumerations: documentation/enums.md
- Extended Settings: documentation/extended_settings.md
- Rhino Export Options: documentation/rhino_export_options.md
- BREP data: documentation/brep_data.md
- IFC:
- IFC2x3 Element Type: documentation/ifc_2x3_element_type.md
- IFC Options: documentation/ifc_options.md
- Camera: documentation/camera_data.md
- Layer Settings: documentation/layer_settings.md
- Text Object Options: documentation/text_object_options.md
- Window Geometry: documentation/window_geometry.md
- BIMteam Upload Result: documentation/bim_team_upload_result.md
- Connector Axis Controller: documentation/connector_axis_controller.md
- Dimension Controller: documentation/dimension_controller.md
- Element Controller: documentation/element_controller.md
- End-Type Controller: documentation/endtype_controller.md
- File Controller: documentation/file_controller.md
- Geometry Controller: documentation/geometry_controller.md
- List Controller: documentation/list_controller.md
- Machine Controller: documentation/machine_controller.md
- Material Controller: documentation/material_controller.md
- Menu Controller: documentation/menu_controller.md
- Multi Layer Cover Controller: documentation/multi_layer_cover_controller.md
- Roof Controller: documentation/roof_controller.md
- Scene Controller: documentation/scene_controller.md
- Shop Drawing Controller: documentation/shop_drawing_controller.md
- Utility Controller: documentation/utility_controller.md
- Visualization Controller: documentation/visualization_controller.md
- Examples:
- Geometry: examples/geometry.md
- Attribute Controller: examples/attribute_example.md
- BIM Controller: examples/bim_example.md
- Cadwork: examples/cadwork.md
- Connector Axis Controller: examples/connector_example.md
- Element Controller: examples/element_example.md
- End-Type Controller: examples/endtype_example.md
- File Controller: examples/file_example.md
- Geometry Controller: examples/geometry_example.md
- List Controller: examples/list_example.md
- Machine Controller: examples/machine_example.md
- Material Controller: examples/material_example.md
- Menu Controller: examples/menu_example.md
- Roof Controller: examples/roof_example.md
- Scene Controller: examples/scene_example.md
- Shop Drawing Controller: examples/shop_drawing_example.md
- Utility Controller: examples/utility_example.md
- Visualization Controller: examples/visualization_example.md
- GUI: examples/tk_gui.md
- Compare: examples/compare.md
- Videos:
- videos.md
- Auto Attributes:
- auto_attributes.md
- About:
- About Guide: about.md
- Release Notes: release_notes.md
markdown_extensions:
- admonition
- attr_list
- footnotes
- md_in_html
- pymdownx.arithmatex:
generic: true
- pymdownx.emoji:
emoji_index: !!python/name:pymdownx.emoji.gemoji
emoji_generator: !!python/name:pymdownx.emoji.to_alt
- pymdownx.highlight:
linenums: true
- pymdownx.keys
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
extra_javascript:
- https://unpkg.com/[email protected]/dist/tablesort.min.js
- js/tablesort.js
- js/katex.js
- https://cdnjs.cloudflare.com/ajax/libs/KaTeX/0.16.7/katex.min.js
- https://cdnjs.cloudflare.com/ajax/libs/KaTeX/0.16.7/contrib/auto-render.min.js
extra_css:
- https://cdnjs.cloudflare.com/ajax/libs/KaTeX/0.16.7/katex.min.css
plugins:
- mkdocstrings
- search
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/cwapi3d
name: cwapi3d