CCT.NUI.Tests.Core.Clustering.KMeansClusterFactoryTests.PrepareTwoClusterData C# (CSharp) Method

PrepareTwoClusterData() private method

private PrepareTwoClusterData ( ) : IList
return IList
        private IList<Point> PrepareTwoClusterData()
        {
            var data = new List<Point>();
            for (int x = 0; x < this.size.Width; x++)
            {
                for (int y = 0; y < this.size.Height; y++)
                {
                    if ((x == 2 && y == 2) || (x == 15 && y == 8))
                    {
                        data.Add(new Point(x, y, 700));
                    }
                }
            }
            return data;
        }
    }