cyclecad 3.2.1 → 3.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/DOCKER-SETUP-VERIFICATION.md +399 -0
- package/DOCKER-TESTING.md +463 -0
- package/FUSION360_MODULES.md +478 -0
- package/FUSION_MODULES_README.md +352 -0
- package/INTEGRATION_SNIPPETS.md +608 -0
- package/KILLER-FEATURES-DELIVERY.md +469 -0
- package/MODULES_SUMMARY.txt +337 -0
- package/QUICK_REFERENCE.txt +298 -0
- package/README-DOCKER-TESTING.txt +438 -0
- package/app/index.html +23 -10
- package/app/js/fusion-help.json +1808 -0
- package/app/js/help-module-v3.js +1096 -0
- package/app/js/killer-features-help.json +395 -0
- package/app/js/killer-features.js +1508 -0
- package/app/js/modules/fusion-assembly.js +842 -0
- package/app/js/modules/fusion-cam.js +785 -0
- package/app/js/modules/fusion-data.js +814 -0
- package/app/js/modules/fusion-drawing.js +844 -0
- package/app/js/modules/fusion-inspection.js +756 -0
- package/app/js/modules/fusion-render.js +774 -0
- package/app/js/modules/fusion-simulation.js +986 -0
- package/app/js/modules/fusion-sketch.js +1044 -0
- package/app/js/modules/fusion-solid.js +1095 -0
- package/app/js/modules/fusion-surface.js +949 -0
- package/app/tests/FUSION_TEST_SUITE.md +266 -0
- package/app/tests/README.md +77 -0
- package/app/tests/TESTING-CHECKLIST.md +177 -0
- package/app/tests/TEST_SUITE_SUMMARY.txt +236 -0
- package/app/tests/brep-live-test.html +848 -0
- package/app/tests/docker-integration-test.html +811 -0
- package/app/tests/fusion-all-tests.html +670 -0
- package/app/tests/fusion-assembly-tests.html +461 -0
- package/app/tests/fusion-cam-tests.html +421 -0
- package/app/tests/fusion-simulation-tests.html +421 -0
- package/app/tests/fusion-sketch-tests.html +613 -0
- package/app/tests/fusion-solid-tests.html +529 -0
- package/app/tests/index.html +453 -0
- package/app/tests/killer-features-test.html +509 -0
- package/app/tests/run-tests.html +874 -0
- package/app/tests/step-import-live-test.html +1115 -0
- package/app/tests/test-agent-v3.html +93 -696
- package/architecture-dashboard.html +1970 -0
- package/docs/API-REFERENCE.md +1423 -0
- package/docs/BREP-LIVE-TEST-GUIDE.md +453 -0
- package/docs/DEVELOPER-GUIDE-v3.md +795 -0
- package/docs/DOCKER-QUICK-TEST.md +376 -0
- package/docs/FUSION-FEATURES-GUIDE.md +2513 -0
- package/docs/FUSION-TUTORIAL.md +1203 -0
- package/docs/INFRASTRUCTURE-GUIDE-INDEX.md +327 -0
- package/docs/KEYBOARD-SHORTCUTS.md +402 -0
- package/docs/KILLER-FEATURES-INTEGRATION.md +412 -0
- package/docs/KILLER-FEATURES-SUMMARY.md +424 -0
- package/docs/KILLER-FEATURES-TUTORIAL.md +784 -0
- package/docs/KILLER-FEATURES.md +562 -0
- package/docs/QUICK-REFERENCE.md +282 -0
- package/docs/README-v3-DOCS.md +274 -0
- package/docs/TUTORIAL-v3.md +1190 -0
- package/docs/architecture-dashboard.html +1970 -0
- package/docs/architecture-v3.html +1038 -0
- package/linkedin-post-v3.md +58 -0
- package/package.json +1 -1
- package/scripts/dev-setup.sh +338 -0
- package/scripts/docker-health-check.sh +159 -0
- package/scripts/integration-test.sh +311 -0
- package/scripts/test-docker.sh +515 -0
|
@@ -0,0 +1,402 @@
|
|
|
1
|
+
# cycleCAD Keyboard Shortcuts Reference
|
|
2
|
+
|
|
3
|
+
Complete keyboard shortcut guide for all cycleCAD features across all workspaces.
|
|
4
|
+
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
## SKETCH WORKSPACE
|
|
8
|
+
|
|
9
|
+
### Drawing Tools
|
|
10
|
+
|
|
11
|
+
| Shortcut | Action | Alternative |
|
|
12
|
+
|----------|--------|-------------|
|
|
13
|
+
| `L` | Line tool | Click toolbar icon |
|
|
14
|
+
| `R` | Rectangle tool | Click toolbar icon |
|
|
15
|
+
| `C` | Circle tool | Click toolbar icon |
|
|
16
|
+
| `A` | Arc tool | Cycle through arc modes with repeated presses |
|
|
17
|
+
| `P` | Polyline tool | Multiple connected lines/arcs |
|
|
18
|
+
| `S` | Spline tool | Smooth curve through points |
|
|
19
|
+
| `T` | Text tool | Add annotations to sketch |
|
|
20
|
+
|
|
21
|
+
### Sketch Constraints
|
|
22
|
+
|
|
23
|
+
| Shortcut | Action | Notes |
|
|
24
|
+
|----------|--------|-------|
|
|
25
|
+
| `Co` | Coincident constraint | Point to point, or point to line |
|
|
26
|
+
| `H` | Horizontal constraint | Apply to line segments |
|
|
27
|
+
| `V` | Vertical constraint | Apply to line segments |
|
|
28
|
+
| `Pe` | Perpendicular constraint | Two lines at 90° angle |
|
|
29
|
+
| `Pa` | Parallel constraint | Two lines never intersect |
|
|
30
|
+
| `Ta` | Tangent constraint | Line to circle, or two curves |
|
|
31
|
+
| `Eq` | Equal constraint | Lines same length, or circles same radius |
|
|
32
|
+
| `F` | Fixed constraint | Lock point or line in place |
|
|
33
|
+
| `Cc` | Concentric constraint | Circles share same center |
|
|
34
|
+
| `Sy` | Symmetric constraint | Points mirror across line |
|
|
35
|
+
| `D` | Distance constraint | Between two points or point to line |
|
|
36
|
+
| `An` | Angle constraint | Between two lines (in degrees) |
|
|
37
|
+
|
|
38
|
+
### Sketch Operations
|
|
39
|
+
|
|
40
|
+
| Shortcut | Action | Notes |
|
|
41
|
+
|----------|--------|-------|
|
|
42
|
+
| `Esc` | Exit sketch / Deselect | Return to 3D view |
|
|
43
|
+
| `Del` | Delete selected | Delete points, lines, or constraints |
|
|
44
|
+
| `Ctrl+Z` | Undo | Revert last action |
|
|
45
|
+
| `Ctrl+Y` | Redo | Revert undo |
|
|
46
|
+
| `V` | Fit/Zoom all | Show entire sketch in view |
|
|
47
|
+
| `Shift+V` | Fit selected | Zoom to selected geometry |
|
|
48
|
+
| `Spacebar` | Pan (hold + drag) | Move view around |
|
|
49
|
+
| `Right-click + drag` | Rotate view | Only in 3D (not available in sketch mode) |
|
|
50
|
+
|
|
51
|
+
### Construction Geometry
|
|
52
|
+
|
|
53
|
+
| Shortcut | Action | Notes |
|
|
54
|
+
|----------|--------|-------|
|
|
55
|
+
| `Shift+C` | Toggle construction | Make line/circle dashed (reference only) |
|
|
56
|
+
| `Shift+G` | Toggle geometry | Convert between construction and regular |
|
|
57
|
+
|
|
58
|
+
---
|
|
59
|
+
|
|
60
|
+
## SOLID WORKSPACE
|
|
61
|
+
|
|
62
|
+
### Base Operations
|
|
63
|
+
|
|
64
|
+
| Shortcut | Action | Alternative |
|
|
65
|
+
|----------|--------|-------------|
|
|
66
|
+
| `E` | Extrude | Pull 2D sketch into 3D |
|
|
67
|
+
| `R` | Revolve | Rotate profile around axis |
|
|
68
|
+
| `Sw` | Sweep | Move profile along path |
|
|
69
|
+
| `Lo` | Loft | Interpolate between profiles |
|
|
70
|
+
|
|
71
|
+
### Modification Operations
|
|
72
|
+
|
|
73
|
+
| Shortcut | Action | Notes |
|
|
74
|
+
|----------|--------|-------|
|
|
75
|
+
| `Fi` | Fillet | Round edges smoothly |
|
|
76
|
+
| `Ch` | Chamfer | Bevel edges at angle |
|
|
77
|
+
| `Sh` | Shell | Make hollow with wall thickness |
|
|
78
|
+
| `Dr` | Draft | Apply taper angle for molding |
|
|
79
|
+
|
|
80
|
+
### Pattern Operations
|
|
81
|
+
|
|
82
|
+
| Shortcut | Action | Notes |
|
|
83
|
+
|----------|--------|-------|
|
|
84
|
+
| `Pr` | Rectangular Pattern | Array in X and Y directions |
|
|
85
|
+
| `Pc` | Circular Pattern | Array around central axis |
|
|
86
|
+
| `Mi` | Mirror | Reflect across plane |
|
|
87
|
+
|
|
88
|
+
### Boolean Operations
|
|
89
|
+
|
|
90
|
+
| Shortcut | Action | Notes |
|
|
91
|
+
|----------|--------|-------|
|
|
92
|
+
| `Bu` | Boolean Union | Combine two bodies |
|
|
93
|
+
| `Bc` | Boolean Cut | Subtract one body from another |
|
|
94
|
+
| `Bi` | Boolean Intersect | Keep only overlapping volume |
|
|
95
|
+
|
|
96
|
+
### Advanced Operations
|
|
97
|
+
|
|
98
|
+
| Shortcut | Action | Notes |
|
|
99
|
+
|----------|--------|-------|
|
|
100
|
+
| `Bo` | Boundary Surface | Create surface bounded by edges |
|
|
101
|
+
| `Rb` | Rib/Web | Add reinforcing wall |
|
|
102
|
+
| `Th` | Thicken | Convert surface to solid |
|
|
103
|
+
|
|
104
|
+
### Solid Workspace Navigation
|
|
105
|
+
|
|
106
|
+
| Shortcut | Action | Notes |
|
|
107
|
+
|----------|--------|-------|
|
|
108
|
+
| `Esc` | Cancel operation | Exit current tool |
|
|
109
|
+
| `Del` | Delete feature | Remove from feature tree |
|
|
110
|
+
| `V` | Fit/Zoom all | Show entire model |
|
|
111
|
+
| `Shift+V` | Fit selected | Zoom to selected feature |
|
|
112
|
+
| `Right-click + drag` | Rotate view | Rotate 3D model |
|
|
113
|
+
| `Spacebar + drag` | Pan | Move view left/right/up/down |
|
|
114
|
+
| `Scroll wheel` | Zoom in/out | Scroll to magnify |
|
|
115
|
+
| `Middle-click + drag` | Pan | Alternative pan method |
|
|
116
|
+
|
|
117
|
+
---
|
|
118
|
+
|
|
119
|
+
## ASSEMBLY WORKSPACE
|
|
120
|
+
|
|
121
|
+
### Assembly Operations
|
|
122
|
+
|
|
123
|
+
| Shortcut | Action | Notes |
|
|
124
|
+
|----------|--------|-------|
|
|
125
|
+
| `I` | Insert Component | Add part to assembly |
|
|
126
|
+
|
|
127
|
+
### Joint Types
|
|
128
|
+
|
|
129
|
+
| Shortcut | Action | Type |
|
|
130
|
+
|----------|--------|------|
|
|
131
|
+
| `Jr` | Rigid Joint | Fixed (no movement) |
|
|
132
|
+
| `Jh` | Revolute Joint | Rotation around axis (hinge) |
|
|
133
|
+
| `Js` | Slider Joint | Translation along axis |
|
|
134
|
+
| `Jb` | Ball Joint | Rotation in all directions |
|
|
135
|
+
| `Jp` | Planar Joint | Translation in plane, rotation around normal |
|
|
136
|
+
| `Jc` | Cylinder Joint | Rotation and translation around same axis |
|
|
137
|
+
|
|
138
|
+
### Assembly Tools
|
|
139
|
+
|
|
140
|
+
| Shortcut | Action | Notes |
|
|
141
|
+
|----------|--------|-------|
|
|
142
|
+
| `Ex` | Explode View | Create animated explosion |
|
|
143
|
+
| `Cc` | Collision Detection | Find interference between parts |
|
|
144
|
+
|
|
145
|
+
---
|
|
146
|
+
|
|
147
|
+
## CAM WORKSPACE
|
|
148
|
+
|
|
149
|
+
### CAM Setup and Tools
|
|
150
|
+
|
|
151
|
+
| Shortcut | Action | Notes |
|
|
152
|
+
|----------|--------|-------|
|
|
153
|
+
| `Su` | CAM Setup | Define workpiece and machine |
|
|
154
|
+
| `Tl` | Tool Library | Manage cutting tools |
|
|
155
|
+
|
|
156
|
+
### 2D Toolpaths
|
|
157
|
+
|
|
158
|
+
| Shortcut | Action | Purpose |
|
|
159
|
+
|----------|--------|---------|
|
|
160
|
+
| `Cn` | Contour | Mill outer profile |
|
|
161
|
+
| `Pk` | Pocket | Mill enclosed area |
|
|
162
|
+
| `Dr` | Drill | Plunge and tap operation |
|
|
163
|
+
|
|
164
|
+
### 3D Toolpaths
|
|
165
|
+
|
|
166
|
+
| Shortcut | Action | Purpose |
|
|
167
|
+
|----------|--------|---------|
|
|
168
|
+
| `Rg` | Roughing | Remove bulk material |
|
|
169
|
+
| `Fn` | Finishing | Fine cuts for surface quality |
|
|
170
|
+
|
|
171
|
+
### CAM Output
|
|
172
|
+
|
|
173
|
+
| Shortcut | Action | Notes |
|
|
174
|
+
|----------|--------|-------|
|
|
175
|
+
| `Gc` | Export G-Code | Generate .NC/.GCode file |
|
|
176
|
+
| `Pv` | Preview Tool Path | Simulate cutting operation |
|
|
177
|
+
|
|
178
|
+
---
|
|
179
|
+
|
|
180
|
+
## DRAWING WORKSPACE
|
|
181
|
+
|
|
182
|
+
### Drawing Views
|
|
183
|
+
|
|
184
|
+
| Shortcut | Action | Notes |
|
|
185
|
+
|----------|--------|-------|
|
|
186
|
+
| `Ns` | New Sheet | Create new drawing page |
|
|
187
|
+
| `Or` | Orthographic View | Front/Top/Right projections |
|
|
188
|
+
| `Se` | Section View | Cross-section/sectional view |
|
|
189
|
+
| `De` | Detail View | Enlarged view of area |
|
|
190
|
+
|
|
191
|
+
### Dimensions and Annotations
|
|
192
|
+
|
|
193
|
+
| Shortcut | Action | Notes |
|
|
194
|
+
|----------|--------|-------|
|
|
195
|
+
| `Ad` | Automatic Dimensions | Extract from 3D constraints |
|
|
196
|
+
| `D` | Manual Dimension | Add custom dimensions |
|
|
197
|
+
| `Gt` | GD&T | Add geometric tolerance frame |
|
|
198
|
+
| `T` | Text | Add notes and annotations |
|
|
199
|
+
|
|
200
|
+
### Title and Layout
|
|
201
|
+
|
|
202
|
+
| Shortcut | Action | Notes |
|
|
203
|
+
|----------|--------|-------|
|
|
204
|
+
| `Tb` | Title Block | Add drawing title/info block |
|
|
205
|
+
|
|
206
|
+
---
|
|
207
|
+
|
|
208
|
+
## RENDER WORKSPACE
|
|
209
|
+
|
|
210
|
+
### Materials
|
|
211
|
+
|
|
212
|
+
| Shortcut | Action | Notes |
|
|
213
|
+
|----------|--------|-------|
|
|
214
|
+
| `Ma` | Apply Material | Assign color/finish to surface |
|
|
215
|
+
|
|
216
|
+
### Lighting and Environment
|
|
217
|
+
|
|
218
|
+
| Shortcut | Action | Notes |
|
|
219
|
+
|----------|--------|-------|
|
|
220
|
+
| `Sl` | Studio Lighting | Professional 3-point light setup |
|
|
221
|
+
| `En` | Environment Map | HDRI background/reflections |
|
|
222
|
+
|
|
223
|
+
### Animation
|
|
224
|
+
|
|
225
|
+
| Shortcut | Action | Notes |
|
|
226
|
+
|----------|--------|-------|
|
|
227
|
+
| `Tu` | Turntable | Auto-rotating animation |
|
|
228
|
+
| `Sb` | Storyboard | Keyframe-based animation |
|
|
229
|
+
| `Rs` | Render Settings | Quality/resolution config |
|
|
230
|
+
|
|
231
|
+
---
|
|
232
|
+
|
|
233
|
+
## SIMULATION WORKSPACE
|
|
234
|
+
|
|
235
|
+
### Analysis Types
|
|
236
|
+
|
|
237
|
+
| Shortcut | Action | Notes |
|
|
238
|
+
|----------|--------|-------|
|
|
239
|
+
| `Ss` | Stress Simulation | Von Mises stress analysis |
|
|
240
|
+
| `Df` | Deformation | Displacement under load |
|
|
241
|
+
| `Th` | Thermal | Heat transfer analysis |
|
|
242
|
+
| `Mo` | Modal | Natural frequency/vibration |
|
|
243
|
+
|
|
244
|
+
---
|
|
245
|
+
|
|
246
|
+
## INSPECTION WORKSPACE
|
|
247
|
+
|
|
248
|
+
### Analysis Tools
|
|
249
|
+
|
|
250
|
+
| Shortcut | Action | Notes |
|
|
251
|
+
|----------|--------|-------|
|
|
252
|
+
| `Me` | Measurement | Distance/angle/radius measurement |
|
|
253
|
+
| `Sc` | Section Analysis | Cross-section viewing |
|
|
254
|
+
| `Cv` | Curvature Analysis | Surface curvature visualization |
|
|
255
|
+
| `Dr` | Draft Analysis | Mold undercut detection |
|
|
256
|
+
| `Zb` | Zebra Stripe | Surface smoothness reflection check |
|
|
257
|
+
|
|
258
|
+
---
|
|
259
|
+
|
|
260
|
+
## DATA MANAGEMENT
|
|
261
|
+
|
|
262
|
+
### Version Control
|
|
263
|
+
|
|
264
|
+
| Shortcut | Action | Notes |
|
|
265
|
+
|----------|--------|-------|
|
|
266
|
+
| `Sv` | Save Version | Create design checkpoint |
|
|
267
|
+
| `Rs` | Restore Version | Revert to previous version |
|
|
268
|
+
|
|
269
|
+
### Import/Export
|
|
270
|
+
|
|
271
|
+
| Shortcut | Action | Format |
|
|
272
|
+
|----------|--------|--------|
|
|
273
|
+
| `Im` | Import | Load external file |
|
|
274
|
+
| `Ex` | Export | Save as another format |
|
|
275
|
+
| `St` | Export STL | 3D printing format |
|
|
276
|
+
| `Dx` | Export DXF | 2D CAD format |
|
|
277
|
+
| `Pd` | Export PDF | Document format |
|
|
278
|
+
|
|
279
|
+
### Collaboration
|
|
280
|
+
|
|
281
|
+
| Shortcut | Action | Notes |
|
|
282
|
+
|----------|--------|-------|
|
|
283
|
+
| `Sh` | Share Design | Create shareable link |
|
|
284
|
+
| `Co` | Comments | Add feedback annotations |
|
|
285
|
+
|
|
286
|
+
---
|
|
287
|
+
|
|
288
|
+
## GENERAL SHORTCUTS
|
|
289
|
+
|
|
290
|
+
### Global Navigation
|
|
291
|
+
|
|
292
|
+
| Shortcut | Action | Context |
|
|
293
|
+
|----------|--------|---------|
|
|
294
|
+
| `Esc` | Exit current tool / Deselect | All workspaces |
|
|
295
|
+
| `Del` | Delete selected | All workspaces |
|
|
296
|
+
| `Ctrl+Z` | Undo | All workspaces |
|
|
297
|
+
| `Ctrl+Y` | Redo | All workspaces |
|
|
298
|
+
| `Ctrl+S` | Save | All workspaces |
|
|
299
|
+
| `Ctrl+Shift+S` | Save As | All workspaces |
|
|
300
|
+
|
|
301
|
+
### View Control
|
|
302
|
+
|
|
303
|
+
| Shortcut | Action | Notes |
|
|
304
|
+
|----------|--------|-------|
|
|
305
|
+
| `V` | Fit/Zoom all | Show entire geometry |
|
|
306
|
+
| `Shift+V` | Fit selected | Zoom to selected |
|
|
307
|
+
| `Spacebar + drag` | Pan | Move view |
|
|
308
|
+
| `Right-click + drag` | Rotate (3D) | 3D view only |
|
|
309
|
+
| `Scroll wheel` | Zoom in/out | Mouse wheel |
|
|
310
|
+
| `1-6` | Preset views | Front (1), Top (2), Right (3), Back (4), Bottom (5), Isometric (6) |
|
|
311
|
+
|
|
312
|
+
### Selection
|
|
313
|
+
|
|
314
|
+
| Shortcut | Action | Notes |
|
|
315
|
+
|----------|--------|-------|
|
|
316
|
+
| `Click` | Select single | Click on element |
|
|
317
|
+
| `Shift+Click` | Multi-select | Hold shift, click additional elements |
|
|
318
|
+
| `Ctrl+A` | Select All | Select all geometry in current view |
|
|
319
|
+
| `Ctrl+Click` | Toggle selection | Click to add/remove from selection |
|
|
320
|
+
|
|
321
|
+
### Feature Tree (Left Panel)
|
|
322
|
+
|
|
323
|
+
| Shortcut | Action | Notes |
|
|
324
|
+
|----------|--------|-------|
|
|
325
|
+
| `Double-click` | Edit feature | Double-click feature in tree |
|
|
326
|
+
| `Right-click` | Context menu | Delete, suppress, rename, etc. |
|
|
327
|
+
| `Arrow keys` | Navigate tree | Up/down in feature list |
|
|
328
|
+
| `Expand/Collapse` | Tree visibility | Click arrow next to feature |
|
|
329
|
+
|
|
330
|
+
---
|
|
331
|
+
|
|
332
|
+
## WORKSPACE SHORTCUTS
|
|
333
|
+
|
|
334
|
+
### Switch Workspaces
|
|
335
|
+
|
|
336
|
+
| Shortcut | Workspace | Notes |
|
|
337
|
+
|----------|-----------|-------|
|
|
338
|
+
| `Shift+1` | Sketch | Create/edit 2D sketches |
|
|
339
|
+
| `Shift+2` | Solid | 3D modeling operations |
|
|
340
|
+
| `Shift+3` | Assembly | Multi-part assemblies |
|
|
341
|
+
| `Shift+4` | CAM | Manufacturing tool paths |
|
|
342
|
+
| `Shift+5` | Drawing | 2D engineering drawings |
|
|
343
|
+
| `Shift+6` | Render | Visualization and animation |
|
|
344
|
+
| `Shift+7` | Simulation | Stress/thermal/modal analysis |
|
|
345
|
+
| `Shift+8` | Inspection | Measurement and analysis |
|
|
346
|
+
| `Shift+9` | Data | Versions, import/export, collab |
|
|
347
|
+
|
|
348
|
+
---
|
|
349
|
+
|
|
350
|
+
## ADVANCED TIPS
|
|
351
|
+
|
|
352
|
+
### Chord Selection in Sketches
|
|
353
|
+
- While drawing with Line/Polyline, hold `Shift` to constrain to 45° angles
|
|
354
|
+
- Useful for creating aligned geometry quickly
|
|
355
|
+
|
|
356
|
+
### Quick Constraint Toggle
|
|
357
|
+
- After placing a dimension, press `D` again to edit the value immediately
|
|
358
|
+
- No need to double-click (saves time)
|
|
359
|
+
|
|
360
|
+
### Multi-Edit in Tree
|
|
361
|
+
- Click feature in tree, then hold `Shift` and click another feature
|
|
362
|
+
- Both features highlighted and can be operated on together
|
|
363
|
+
|
|
364
|
+
### View Presets
|
|
365
|
+
- Press `1` for Front view
|
|
366
|
+
- Press `2` for Top view
|
|
367
|
+
- Press `3` for Right Side view
|
|
368
|
+
- Press `6` for Isometric (3D view)
|
|
369
|
+
- These work in all workspaces
|
|
370
|
+
|
|
371
|
+
### Fast Feature Toggle
|
|
372
|
+
- Click eye icon in tree to hide/show feature
|
|
373
|
+
- Quickly verify design without deleting features
|
|
374
|
+
|
|
375
|
+
### Undo/Redo Unlimited
|
|
376
|
+
- `Ctrl+Z` and `Ctrl+Y` work through entire history
|
|
377
|
+
- No limit to undo depth (limited only by RAM)
|
|
378
|
+
|
|
379
|
+
### Adaptive Selection
|
|
380
|
+
- Many tools auto-detect input type
|
|
381
|
+
- If sketch exists, Extrude auto-selects it
|
|
382
|
+
- If hole feature exists, Pattern auto-selects it
|
|
383
|
+
- Saves time in workflows
|
|
384
|
+
|
|
385
|
+
---
|
|
386
|
+
|
|
387
|
+
## CUSTOMIZATION
|
|
388
|
+
|
|
389
|
+
Users can customize shortcuts in:
|
|
390
|
+
- Settings > Keyboard Shortcuts
|
|
391
|
+
- Search for action name
|
|
392
|
+
- Assign new key combination
|
|
393
|
+
- Import/export keyboard layouts
|
|
394
|
+
|
|
395
|
+
Common customizations:
|
|
396
|
+
- Change `E` to `X` for Extrude (if you prefer)
|
|
397
|
+
- Add `Shift+D` for Delete (two-key confirmation)
|
|
398
|
+
- Add shortcuts for frequently-used operations
|
|
399
|
+
|
|
400
|
+
---
|
|
401
|
+
|
|
402
|
+
End of Shortcuts Reference
|