Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
3d_modeling:fusion360 [2021/09/22 02:27] – [Troubleshooting] formlab | 3d_modeling:fusion360 [2025/04/11 05:46] (current) – [Fusion 360] formlab | ||
---|---|---|---|
Line 9: | Line 9: | ||
* 0.20mm: able to slide easily | * 0.20mm: able to slide easily | ||
* Print slower (±30mm/s) for better accuracy. In Cura there' | * Print slower (±30mm/s) for better accuracy. In Cura there' | ||
+ | |||
+ | |||
+ | ## Edit imported SVG files | ||
+ | |||
+ | * import SVG curve | ||
+ | * You can't edit this: only drag around sections of the curve. | ||
+ | * Make a new sketch and project the SVG curve into it. | ||
+ | * right click on the projected curve and select 'break link' | ||
+ | * Now you can edit the curve directly | ||
+ | ==== Import curve from CSV file ==== | ||
+ | |||
+ | {{: | ||
+ | |||
+ | Assuming the CSV file is for a 2D curve: | ||
+ | |||
+ | For ex: | ||
+ | < | ||
+ | 0.36,22.16 | ||
+ | 0.54,22.24 | ||
+ | 0.72,22.32 | ||
+ | 0.89,22.40 | ||
+ | </ | ||
+ | |||
+ | * Open CSV file in a text editor (with Regular Expressions functionality) | ||
+ | * add a third column of placeholder numbers to the file ('', | ||
+ | * Search & replace pattern in BBEdit: | ||
+ | * Search: '' | ||
+ | * Replace: '' | ||
+ | |||
+ | After a replace-all: | ||
+ | |||
+ | < | ||
+ | 0.36, | ||
+ | 0.54, | ||
+ | 0.72, | ||
+ | 0.89, | ||
+ | </ | ||
+ | |||
+ | * In Fusion 360, go to '' | ||
+ | * Under the '' | ||
+ | * Fusion will now generate a 2D sketch with the curve | ||
+ | |||