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

Sum() private static method

private static Sum ( OxyPlot.ScreenPoint a, OxyPlot.ScreenPoint b ) : OxyPlot.ScreenPoint
a OxyPlot.ScreenPoint
b OxyPlot.ScreenPoint
return OxyPlot.ScreenPoint
            private static ScreenPoint Sum(ScreenPoint a, ScreenPoint b) {
                return new ScreenPoint(a.X + b.X, a.Y + b.Y);
            }
        }
OxyPlotGraphViewer.CatmullRomSplineHelper