Function: solar-degrees-to-quadrant

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

Signature

(solar-degrees-to-quadrant ANGLE)

Documentation

Determine the quadrant of ANGLE degrees.

Source Code

;; Defined in /usr/src/emacs/lisp/calendar/solar.el.gz
(defun solar-degrees-to-quadrant (angle)
  "Determine the quadrant of ANGLE degrees."
  (1+ (floor (mod angle 360) 90)))