Exemplo n.º 1
0
        public void CreateTest()
        {
            TestRuntime.AssertXcodeVersion(8, 0);

            var grid = SKWarpGeometryGrid.Create(1, 1, points, points);

            Assert.NotNull(grid, "SKWarpGeometryGrid.Create should not return null");
        }
Exemplo n.º 2
0
        public void SKWarpGeometryGridTest()
        {
            TestRuntime.AssertXcodeVersion(8, 0);

            var grid = new SKWarpGeometryGrid(1, 1, points, points);

            Assert.NotNull(grid, "new SKWarpGeometryGrid () should not return null");
        }
Exemplo n.º 3
0
        public void GetGridByReplacingDestPositionsTest()
        {
            TestRuntime.AssertXcodeVersion(8, 0);

            using (var grid = SKWarpGeometryGrid.GetGrid()) {
                var r = grid.GetGridByReplacingDestPositions(points);
                Assert.NotNull(r, "GetGridByReplacingDestPositions should not return null");
            }
        }