()
| 108 | } |
| 109 | |
| 110 | public static void SimpleIntersect() |
| 111 | { |
| 112 | const FillRule fillrule = FillRule.NonZero; |
| 113 | Paths64 subject = new() { Clipper.MakePath(new int[] { 200, 100, 20, 158, 130, 4, 130, 196, 20, 42 }) }; |
| 114 | Paths64 clip = new() { Clipper.MakePath(new int[] { 196, 126, 8, 136, 154, 16, 104, 200, 38, 24 }) }; |
| 115 | Paths64 solution = Clipper.Intersect(subject, clip, fillrule); |
| 116 | DisplayAsSvgImage("Intersect", fillrule, subject, clip, solution); |
| 117 | } |
| 118 | |
| 119 | public static void SimpleInflate() |
| 120 | { |
nothing calls this directly
no test coverage detected