public void CreateTest() { TestRuntime.AssertXcodeVersion(8, 0); var grid = SKWarpGeometryGrid.Create(1, 1, points, points); Assert.NotNull(grid, "SKWarpGeometryGrid.Create should not return null"); }
public void SKWarpGeometryGridTest() { TestRuntime.AssertXcodeVersion(8, 0); var grid = new SKWarpGeometryGrid(1, 1, points, points); Assert.NotNull(grid, "new SKWarpGeometryGrid () should not return null"); }
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"); } }