Example #1
0
 public SurfacePlot(ISurface surface, double a1, double b1, int n1, double a2, double b2, int n2, params IFunctionPlotStyle[] styles)
 {
     Surface = surface;
     Segment1 = new FunctionPlotSegment(a1, b1, n1);
     Segment2 = new FunctionPlotSegment(a2, b2, n2);
     Properties = new PlotProperties(styles);
 }
 public SpaceDataPlot(IEnumerable<ISpacePoint> points, params IDataPlotStyle[] styles)
 {
     Points = new ImmutableList<ISpacePoint>(points);
     Properties = new PlotProperties(styles);
 }
Example #3
0
 public CurvePlot(ICurve curve, double a, double b, int n, params IFunctionPlotStyle[] styles)
 {
     Curve = curve;
     Segment = new FunctionPlotSegment(a, b, n);
     Properties = new PlotProperties(styles);
 }