Beispiel #1
0
 public DataPlot(IEnumerable<IPlotPoint> points, params IDataPlotStyle[] styles)
 {
     Points = new ImmutableList<IPlotPoint>(points);
     Properties = new PlotProperties(styles);
 }
 public FunctionPlot(IPlotFunction function, IEnumerable<FunctionPlotSegment> segments, params IFunctionPlotStyle[] styles)
 {
     Function = function;
     Segments = new ImmutableList<FunctionPlotSegment>(segments);
     Properties = new PlotProperties(styles);
 }