I'm using CLIPPER library to offset line and trying to make parallel line.
ClipperOffset co = new ClipperOffset();
co.AddPath (s, JoinType.jtRound, EndType.etOpenRound);
co.Execute (ref solution, 15);
Result is right image in attachment. I need parallel lines instead of offset line "around" main line.
Does anyone know is it possible in Clipper or maybe anyone have any idea how to filter result points to remove unnecessary?