BezierFitting.Scene.SetPoint2 C# (CSharp) 메소드

SetPoint2() 공개 메소드

public SetPoint2 ( double x, double y ) : void
x double
y double
리턴 void
        public void SetPoint2(double x, double y)
        {
            Bezier b = CurrentBezier;
            b.Point2 = new PointD(x, y);
            CurrentBezier = b;
            CalcDeviation();
        }