YAMP.Plot3DValue.this C# (CSharp) Method

this() public method

Gets a certain point of the specified series.
public this ( int index, int point ) : PointTriple
index int The 0-based index of the series.
point int The 0-based index of the point.
return PointTriple
        public PointTriple this[int index, int point]
        {
            get
            {
                return this[index][point];
            }
        }

Same methods

Plot3DValue::this ( int index ) : Points