UltiMaker uses functional, analytical and tracking cookies. Tracking cookies enhance your experience on our website and may also collect your personal data outside of Ultimaker websites. If you agree with the use of tracking cookies, click “I agree, continue browsing”. You can withdraw your consent at any time. If you do not consent with the use of tracking cookies, click “Refuse”. You can find more information about cookies on our Privacy and Cookie Policy page.
Posted
· "Found" this feature, thought I might share.
This isn't really a Cura feature. OpenSCAD makes an implicit union of all parts, and when exporting an STL will only export a single, watertight mesh (at least, without errors). Especially with round sections, joining the two can create an average which is different to the individual parts.
For something like this, with rounded parts that need to be preserved properly, make sure you define $fn as something pretty high, generally at the start of your SCAD file:
$fn = $preview ?64:2048;
That'll make previews not take forever and the actual rendering take foooooooreeeeeever with round objects by ensuring they have a ridiculously high number of facets but will also preserve as much of the resolution as possible. It will also give you a pretty damn massive file size (a single sphere exported with $fn at 2048 is over a 200MB file, so you may want to lower the 2048 slightly, but I usually go by powers of two - programming mindset - and definitely wouldn't go any lower than 512 for a high quality export - even at 1024 the sphere file size is a quarter that of the 2048, also make sure your value is evenly divisible by 4 so that the result can have integral co-ordinates) so it's maybe not always practical.
Link to post
Share on other sites
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Here comes Cura 5.9 and in this stable release we have lots of material and printer profiles for UltiMaker printers, including the newly released Sketch Sprint. Additionally, scarf seams have been introduced alongside even more print settings and improvements. Check out the rest of this article to find out the details on all of that and more
We are happy to announce the next evolution in the UltiMaker 3D printer lineup: the UltiMaker Factor 4 industrial-grade 3D printer, designed to take manufacturing to new levels of efficiency and reliability. Factor 4 is an end-to-end 3D printing solution for light industrial applications
Recommended Posts
Slashee_the_Cow 480
This isn't really a Cura feature. OpenSCAD makes an implicit union of all parts, and when exporting an STL will only export a single, watertight mesh (at least, without errors). Especially with round sections, joining the two can create an average which is different to the individual parts.
For something like this, with rounded parts that need to be preserved properly, make sure you define $fn as something pretty high, generally at the start of your SCAD file:
That'll make previews not take forever and the actual rendering take foooooooreeeeeever with round objects by ensuring they have a ridiculously high number of facets but will also preserve as much of the resolution as possible. It will also give you a pretty damn massive file size (a single sphere exported with $fn at 2048 is over a 200MB file, so you may want to lower the 2048 slightly, but I usually go by powers of two - programming mindset - and definitely wouldn't go any lower than 512 for a high quality export - even at 1024 the sphere file size is a quarter that of the 2048, also make sure your value is evenly divisible by 4 so that the result can have integral co-ordinates) so it's maybe not always practical.
Link to post
Share on other sites