Function: artist-ellipse-point-list-add-center
artist-ellipse-point-list-add-center is a byte-compiled function
defined in artist.el.gz.
Signature
(artist-ellipse-point-list-add-center X-CENTER Y-CENTER POINT-LIST)
Documentation
Add offsets X-CENTER and Y-CENTER to coordinates in POINT-LIST.
Source Code
;; Defined in /usr/src/emacs/lisp/textmodes/artist.el.gz
(defun artist-ellipse-point-list-add-center (x-center y-center point-list)
"Add offsets X-CENTER and Y-CENTER to coordinates in POINT-LIST."
(mapcar
(lambda (p)
(artist-coord-set-x p (+ x-center (artist-coord-get-x p)))
(artist-coord-set-y p (+ y-center (artist-coord-get-y p))))
point-list))