Esempio n. 1
0
        private static void ValidateHoleClockness(List <IntVector2> points)
        {
            var a = PolygonOperations.Punch()
                    .Include(new Polygon2(points))
                    .Execute();

            Trace.Assert(a.Childs.Count == 1);
        }