AddPoints() public method

Sets the function values given in the matrix m with generated values for x and y.
public AddPoints ( MatrixValue m ) : void
m MatrixValue The values for the plot.
return void
コード例 #1
0
ファイル: SurfFunction.cs プロジェクト: FlorianRappl/YAMP
 public SurfacePlotValue Function(MatrixValue X, MatrixValue Y, MatrixValue Z)
 {
     var splot = new SurfacePlotValue();
     splot.IsSurf = true;
     splot.IsMesh = false;
     splot.AddPoints(X, Y, Z);
     return splot;
 }
コード例 #2
0
        public SurfacePlotValue Function(MatrixValue Z)
        {
            var splot = new SurfacePlotValue();

            splot.AddPoints(Z);
            splot.IsMesh = true;
            splot.IsSurf = false;
            return(splot);
        }