Function: artist-key-draw-2points
artist-key-draw-2points is a byte-compiled function defined in
artist.el.gz.
Signature
(artist-key-draw-2points X Y)
Documentation
Draw current 2-point shape at X,Y.
Source Code
;; Defined in /usr/src/emacs/lisp/textmodes/artist.el.gz
(defun artist-key-draw-2points (x y)
"Draw current 2-point shape at X,Y."
(let ((draw-fn (artist-go-get-draw-fn-from-symbol artist-curr-go))
(x1 (artist-endpoint-get-x artist-key-endpoint1))
(y1 (artist-endpoint-get-y artist-key-endpoint1)))
(setq artist-key-shape (artist-funcall draw-fn x1 y1 x y))))