ArcGISWindowsPhoneSDK.PDSMainViewModel.RandomizeEntries C# (CSharp) 메소드

RandomizeEntries() 개인적인 메소드

private RandomizeEntries ( ) : void
리턴 void
        private void RandomizeEntries()
        {
            for (int i = 0; i < Data.PointsOfInterest.Count; i++)
            {
                var pnt = Data.PointsOfInterest[r.Next(Data.PointsOfInterest.Count)];
                pnt.X = r.NextDouble() * width - width * .5;
                pnt.Y = r.NextDouble() * height - height * .5;
            }
        }