public Plot3DValue Function(MatrixValue X, MatrixValue Y, MatrixValue Z)
        {
            var p3 = new Plot3DValue();

            p3.AddPoints(X, Y, Z);
            return(p3);
        }
Beispiel #2
0
 public SumericsLinePlot3D(Plot3DValue plot)
     : base(plot)
 {
     _plot = plot;
     UpdateSeries();
     UpdateProperties();
 }
Beispiel #3
0
 public Plot3DValue Function(MatrixValue X, MatrixValue Y, MatrixValue Z)
 {
     var p3 = new Plot3DValue();
     p3.AddPoints(X, Y, Z);
     return p3;
 }