public PolarPlotValue Function(MatrixValue m, MatrixValue n)
        {
            var plot = new PolarPlotValue();

            plot.AddPoints(m, n);
            return(plot);
        }
Пример #2
0
        public SumericsPolarPlot(PolarPlotValue plot) :
            base(plot)
        {
            var model = _model.Model;

            model.PlotAreaBorderThickness = new OxyThickness(0);
            model.PlotType = PlotType.Polar;
            _plot          = plot;
            model.Axes.Add(new AngleAxis {
                FormatAsFractions = true
            });
            model.Axes.Add(new MagnitudeAxis());
            UpdateSeries();
            UpdateProperties();
        }
Пример #3
0
 public PolarPlotValue Function(MatrixValue m, MatrixValue n)
 {
     var plot = new PolarPlotValue();
     plot.AddPoints(m, n);
     return plot;
 }