https://i.gyazo.com/59afe300408cf5acb54e36716980fad4.png Reply P.A. says: July 17, 2017 at 6:27 pm You know, I feel something funny is going on with that quest. I had to submit NQ and HQ, maybe it was a strange bug of sorts, or they nerfed it. Either way if it’s just...
+ // https://en.wikipedia.org/wiki/Nonzero-rule + public enum FillRule + { + EvenOdd, + NonZero, + Positive, + Negative + }; + + // PointInPolygon + internal enum PipResult + { + Inside, + Outside, + OnEdge + }; + + public static class InternalClipper + { + internal...