AcManager.Controls.OxyPlotGraphViewer.CatmullRomSplineHelper.Prev C# (CSharp) 메소드

Prev() 개인적인 정적인 메소드

private static Prev ( OxyPlot.ScreenPoint s0, OxyPlot.ScreenPoint s1 ) : OxyPlot.ScreenPoint
s0 OxyPlot.ScreenPoint
s1 OxyPlot.ScreenPoint
리턴 OxyPlot.ScreenPoint
            private static ScreenPoint Prev(ScreenPoint s0, ScreenPoint s1) {
                return new ScreenPoint(s0.X - 0.0001 * (s1.X - s0.X), s0.Y - 0.0001 * (s1.Y - s0.Y));
            }
OxyPlotGraphViewer.CatmullRomSplineHelper