private void GraphSkeleton(System.Drawing.Image destinationImage, GraphingArgs graphingArgs, double xMin, double xMax, double yMin, double yMax, IList<Point<double>> pointsArray)
        {
            ArrayGrapher tmp = new ArrayGrapher(pointsArray);
            copyGrapherSignature(this, tmp);

            tmp.Graph(destinationImage, graphingArgs, xMin, xMax, yMin, yMax);
        }
Exemple #2
0
        private void GraphSkeleton(System.Drawing.Image destinationImage, GraphingArgs graphingArgs, double xMin, double xMax, double yMin, double yMax, IList <Point <double> > pointsArray)
        {
            ArrayGrapher tmp = new ArrayGrapher(pointsArray);

            copyGrapherSignature(this, tmp);

            tmp.Graph(destinationImage, graphingArgs, xMin, xMax, yMin, yMax);
        }