AcManager.Controls.OxyPlotGraphViewer.CatmullRomSplineHelper.Mult C# (CSharp) Method

Mult() private static method

private static Mult ( double d, OxyPlot.ScreenPoint s ) : OxyPlot.ScreenPoint
d double
s OxyPlot.ScreenPoint
return OxyPlot.ScreenPoint
            private static ScreenPoint Mult(double d, ScreenPoint s) {
                return new ScreenPoint(s.X * d, s.Y * d);
            }
OxyPlotGraphViewer.CatmullRomSplineHelper