/// <summary>Append a move to segment to the current figure.</summary> /// <param name="x">The point to move to coordinates.<see cref="System.PointD"/></param> public void AddMove(System.Windows.Point point) { X11MoveToPathSegment mv = new X11MoveToPathSegment(point); _elements.Add(mv); }
/// <summary>Append a move to segment to the current figure.</summary> /// <param name="x">The point to move to x coordinate.<see cref="System.Double"/></param> /// <param name="y">The point to move to y coordinate.<see cref="System.Double"/></param> public void AddMove(double x, double y) { X11MoveToPathSegment mv = new X11MoveToPathSegment(x, y); _elements.Add(mv); }