Esempio n. 1
0
 /// <summary>
 /// Returns the ith point.
 /// </summary>
 public PointD this[int i]
 {
     get
     {
         return(new PointD(xDataGetter_.Get(i), yDataGetter_.Get(i)));
     }
 }
Esempio n. 2
0
 /// <summary>
 /// Returns the ith point.
 /// </summary>
 public PointD this[int i] => new PointD(xDataGetter_.Get(i), yDataGetter_.Get(i));