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

Equals() private static method

private static Equals ( OxyPlot.ScreenPoint a, OxyPlot.ScreenPoint b ) : bool
a OxyPlot.ScreenPoint
b OxyPlot.ScreenPoint
return bool
            private static bool Equals(ScreenPoint a, ScreenPoint b) {
                return Equals(a.X, b.X) && Equals(a.Y, b.Y);
            }
OxyPlotGraphViewer.CatmullRomSplineHelper