Beispiel #1
0
        public void GetBoundaryPathReturnsNotNullPath()
        {
            using var region = new SKRegion(SKRectI.Create(10, 10, 100, 100));
            region.Op(SKRectI.Create(50, 50, 100, 100), SKRegionOperation.Union);

            using var path = region.GetBoundaryPath();

            Assert.NotNull(path);
        }