Function: landmark-xy-to-index

landmark-xy-to-index is a byte-compiled function defined in landmark.el.gz.

Signature

(landmark-xy-to-index X Y)

Documentation

Translate X, Y cartesian coords into the corresponding board index.

Source Code

;; Defined in /usr/src/emacs/lisp/obsolete/landmark.el.gz
(defun landmark-xy-to-index (x y)
  "Translate X, Y cartesian coords into the corresponding board index."
  (+ (* y landmark-board-width) x y))