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 CurvePlot(ICurve curve, double a, double b, int n, params IFunctionPlotStyle[] styles) { Curve = curve; Segment = new FunctionPlotSegment(a, b, n); Properties = new PlotProperties(styles); }