AcManager.Controls.OxyPlotGraphViewer.CatmullRomSplineHelper.Equals C# (CSharp) Метод

Equals() приватный статический Метод

private static Equals ( OxyPlot.ScreenPoint a, OxyPlot.ScreenPoint b ) : bool
a OxyPlot.ScreenPoint
b OxyPlot.ScreenPoint
Результат bool
            private static bool Equals(ScreenPoint a, ScreenPoint b) {
                return Equals(a.X, b.X) && Equals(a.Y, b.Y);
            }
OxyPlotGraphViewer.CatmullRomSplineHelper