Function: solar-xy-to-quadrant

solar-xy-to-quadrant is a byte-compiled function defined in solar.el.gz.

Signature

(solar-xy-to-quadrant X Y)

Documentation

Determine the quadrant of the point X, Y.

Source Code

;; Defined in /usr/src/emacs/lisp/calendar/solar.el.gz
(defun solar-xy-to-quadrant (x y)
  "Determine the quadrant of the point X, Y."
  (if (> x 0)
      (if (> y 0) 1 4)
    (if (> y 0) 2 3)))