Function: artist-vap-find-endpoints-swne
artist-vap-find-endpoints-swne is a byte-compiled function defined in
artist.el.gz.
Signature
(artist-vap-find-endpoints-swne 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-swne (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))))