There is a function in the api called RemoveOverlaps, which seeks for overlaps in one curve. Is there a way to use this function over multiple curves from multiple shapes?
In short i try to remove double lines in my drawing soo my lasercutter does not cut that line twice.
Thanks
Have you tried Shelbys Super Stitch?
macromonster.com/.../
I've downloaded and will report shortly as to how it works.
Although no "version compatibility" listed on the Macromonster site, it does not work with recent versions of CorelDRAW. Even worse, running the macro leaves CorelDRAW in a strange state requiring restart.
In order to solve the 'strange state' without restart you must use a simple macro to, let's say, unlock the interface:
1 2 3 4 5 6 7
Application.EventsEnabled = True Application.Optimization = False Application.Refresh If Documents.Count > 0 Then ActiveDocument.PreserveSelection = True ActiveWindow.Refresh End If
Thanks for the tip. I've stored it and will use it the next time that "strange state" shows up!