NPlot.SequenceAdapter.this C# (CSharp) Method

this() public method

Returns the ith point.
public this ( int i ) : PointD
i int
return PointD
        public PointD this[int i]
        {
            get
            {
                return new PointD( this.xDataGetter_.Get(i), this.yDataGetter_.Get(i) );
            }
        }