Is there any way to detect/remove sharp angles from strokes?
Copy link to clipboard
Copied
I know we can change appearance of sharp angles to make it rounded, but this is not what I'm looking for.
I need to check/change the points of the path, because I'll use it in a script to validate cutpath of stickers
Explore related tutorials & articles
Copy link to clipboard
Copied
You can lower the Limit setting in the Stroke panel. But the best way to avoid the sharp angles is to change the angles of the shape so that they are not as acute.
Copy link to clipboard
Copied
Hello Barbara, thank you.
Unfortunatelly Stroke panel seems only affect the visualization, I need to change/check the path itself.
About the change the shape, yes, that is the idea, but I would like to make an final verification
Copy link to clipboard
Copied
pathPoints[i].pointType = PointType.CORNER;
pathPoints[i].pointType = PointType.SMOOTH;
Copy link to clipboard
Copied
Thank you femkeblanco, but for example in this case, the pointType is smooth but still sharp.
I think the best I can do will be get sets of 3 pathPoints and check if the angle formed by it is greather then 30~
But it will not be so accurate though

