Function: artist-vap-find-endpoints-nwse
artist-vap-find-endpoints-nwse is a byte-compiled function defined in
artist.el.gz.
Signature
(artist-vap-find-endpoints-nwse X Y)
Documentation
Find endpoints for a diagonal line (made by \'s) through X, Y.
An endpoint is a cons pair, (ENDPOINT-X . ENDPOINT-Y).
Source Code
;; Defined in /usr/src/emacs/lisp/textmodes/artist.el.gz
(defun artist-vap-find-endpoints-nwse (x y)
"Find endpoints for a diagonal line (made by \\'s) through X, Y.
An endpoint is a cons pair, (ENDPOINT-X . ENDPOINT-Y)."
(list (artist-vap-find-endpoint x y 1 1 '(?\\ ?X) '(?\s))
(artist-vap-find-endpoint x y -1 -1 '(?\\ ?X) '(?\s))))