I am using the CLIPPER library to offset the line and trying to make a parallel line.
ClipperOffset co = new ClipperOffset(); co.AddPath (s, JoinType.jtRound, EndType.etOpenRound); co.Execute (ref solution, 15);
The result is the correct image in the application. I need parallel lines instead of the line around the line.
Does anyone know if this is possible in Clipper or maybe someone knows how to filter result points to remove unnecessary ones?

source share