Function: artist-vap-find-endpoints-horiz

artist-vap-find-endpoints-horiz is a byte-compiled function defined in artist.el.gz.

Signature

(artist-vap-find-endpoints-horiz X Y)

Documentation

Find endpoints for a horizontal line 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-horiz (x y)
  "Find endpoints for a horizontal line through X, Y.
An endpoint is a cons pair, (ENDPOINT-X . ENDPOINT-Y)."
  (list (artist-vap-find-endpoint x y  1 0 '(?- ?+) '(?\s))
	(artist-vap-find-endpoint x y -1 0 '(?- ?+) '(?\s))))