Пример #1
0
 public SumericsSurfacePlot(SurfacePlotValue plot)
     : base(plot)
 {
     _plot = plot;
     UpdateSeries();
     UpdateProperties();
 }
Пример #2
0
 public SurfacePlotValue Function(MatrixValue X, MatrixValue Y, MatrixValue Z)
 {
     var splot = new SurfacePlotValue();
     splot.AddPoints(X, Y, Z);
     splot.IsMesh = true;
     splot.IsSurf = false;
     return splot;
 }
        public SurfacePlotValue Function(MatrixValue X, MatrixValue Y, MatrixValue Z)
        {
            var splot = new SurfacePlotValue();

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