Example #1
0
        public static IEnumerable <P2 <float> > TestData()
        {
            var retVal = GenBT.TestP2N(0.0f, 1.0f, 263, 1000000).ToArray();

            //for (var i = 0; i < 1000; i++)
            //{
            //    System.Diagnostics.Debug.WriteLine($"{retVal[i].X}\t{retVal[i].Y}");
            //}

            return(retVal);
        }
Example #2
0
 public static IEnumerable <P2 <float> > TestData(int count)
 {
     return(GenBT.TestP2N(0.0f, 1.0f, DateTime.Now.Millisecond, count).ToArray());;
 }
Example #3
0
 void ResetVals(int count)
 {
     _hist2DVm.UpdateData(
         GenBT.TestP2N(0.0f, 1.0f, DateTime.Now.Millisecond, count)
         .ToArray());
 }