Perfect Circles and Offset Fill
Categories:
Laser
197
1
0
2023-07-03
C
Jen
2023-07-04Yes that is normal. I believe the process of offsetting a curve under the hood involves breaking down the curve into hundreds of little points/segments which are offset, stitched back together and simplified again. This process uses a lot of CPU time. If you try offset-filling a large shape with a small line interval you can see that it can take some time to generate all the offset fill paths. So a compromise is made where some path precision is traded for faster processing at the cost of some gaps and skinny islands in the middle. If the offset fill is between two paths where one is the offset of the other, you could try this to improve your results: If the gap between the two paths to fill was 2mm and your ‘Line Interval’ is normally 0.1mm then 2 ÷ 0.1 = 20, add one to that number = 21, now recalculate, 2mm÷21 = new interval of 0.0952mm which will turn out much nicer with less travel movement as shown below on the right:
0Reply
Relevant recommendations
- 2023-11-06
- 2023-07-31