コード例 #1
0
        public void PointInPolygon(TestPoint location, TestSize size, TestPoint point, bool isInside)
        {
            RectangularePolygon shape = new RectangularePolygon(location, size);

            Assert.Equal(isInside, shape.Contains(point));
        }