()
| 117 | } |
| 118 | |
| 119 | public static void SimpleInflate() |
| 120 | { |
| 121 | const FillRule fillrule = FillRule.NonZero; |
| 122 | Paths64 subject = new() { Clipper.Ellipse(new Point64(100,100), 100, 100, 5) }; |
| 123 | Paths64 solution = Clipper.InflatePaths(subject, 12.5, JoinType.Round, EndType.Joined); |
| 124 | DisplayAsSvgImage_Open("Inflate", fillrule, subject, null, solution); |
| 125 | } |
| 126 | |
| 127 | public static void DisplayAsSvgImage(string caption, FillRule fillrule, |
| 128 | Paths64 subject, Paths64 clip, Paths64 solution) |
nothing calls this directly
no test coverage detected