示例#1
0
        /// <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);
        }
示例#2
0
        /// <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);
        }