2003-05-30 23:31:15 +00:00
|
|
|
;;; float-sup.el --- define some constants useful for floating point numbers.
|
|
|
|
|
2006-12-07 05:06:17 +00:00
|
|
|
;; Copyright (C) 1985, 1986, 1987, 2001, 2002, 2003, 2004,
|
2010-01-13 00:35:10 -08:00
|
|
|
;; 2005, 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
|
2003-05-30 23:31:15 +00:00
|
|
|
|
|
|
|
;; Maintainer: FSF
|
|
|
|
;; Keywords: internal
|
2010-08-29 12:17:13 -04:00
|
|
|
;; Package: emacs
|
2003-05-30 23:31:15 +00:00
|
|
|
|
|
|
|
;; This file is part of GNU Emacs.
|
|
|
|
|
2008-05-06 03:21:21 +00:00
|
|
|
;; GNU Emacs is free software: you can redistribute it and/or modify
|
2003-05-30 23:31:15 +00:00
|
|
|
;; it under the terms of the GNU General Public License as published by
|
2008-05-06 03:21:21 +00:00
|
|
|
;; the Free Software Foundation, either version 3 of the License, or
|
|
|
|
;; (at your option) any later version.
|
2003-05-30 23:31:15 +00:00
|
|
|
|
|
|
|
;; GNU Emacs is distributed in the hope that it will be useful,
|
|
|
|
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
;; GNU General Public License for more details.
|
|
|
|
|
|
|
|
;; You should have received a copy of the GNU General Public License
|
2008-05-06 03:21:21 +00:00
|
|
|
;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
|
2003-05-30 23:31:15 +00:00
|
|
|
|
|
|
|
;;; Commentary:
|
|
|
|
|
|
|
|
;;; Code:
|
|
|
|
|
|
|
|
;; Provide a meaningful error message if we are running on
|
|
|
|
;; bare (non-float) emacs.
|
|
|
|
|
|
|
|
(if (fboundp 'atan)
|
|
|
|
nil
|
|
|
|
(error "Floating point was disabled at compile time"))
|
|
|
|
|
|
|
|
;; provide an easy hook to tell if we are running with floats or not.
|
|
|
|
;; define pi and e via math-lib calls. (much less prone to killer typos.)
|
2010-09-19 11:49:21 +02:00
|
|
|
(defconst float-pi (* 4 (atan 1)) "The value of Pi (3.1415926...).")
|
|
|
|
(defconst pi float-pi "Obsolete since Emacs-23.3. Use `float-pi' instead.")
|
2007-02-09 11:23:37 +00:00
|
|
|
|
2010-09-19 11:49:21 +02:00
|
|
|
(defconst float-e (exp 1) "The value of e (2.7182818...).")
|
|
|
|
(defvar e float-e "Obsolete since Emacs-23.3. Use `float-e' instead.")
|
2003-05-30 23:31:15 +00:00
|
|
|
|
2010-09-19 11:49:21 +02:00
|
|
|
(defconst degrees-to-radians (/ float-pi 180.0)
|
2003-05-30 23:31:15 +00:00
|
|
|
"Degrees to radian conversion constant.")
|
2010-09-19 11:49:21 +02:00
|
|
|
(defconst radians-to-degrees (/ 180.0 float-pi)
|
2003-05-30 23:31:15 +00:00
|
|
|
"Radian to degree conversion constant.")
|
|
|
|
|
|
|
|
;; these expand to a single multiply by a float when byte compiled
|
|
|
|
|
|
|
|
(defmacro degrees-to-radians (x)
|
|
|
|
"Convert ARG from degrees to radians."
|
2010-09-19 11:49:21 +02:00
|
|
|
(list '* degrees-to-radians x))
|
2003-05-30 23:31:15 +00:00
|
|
|
(defmacro radians-to-degrees (x)
|
|
|
|
"Convert ARG from radians to degrees."
|
2010-09-19 11:49:21 +02:00
|
|
|
(list '* radians-to-degrees x))
|
2003-05-30 23:31:15 +00:00
|
|
|
|
|
|
|
(provide 'lisp-float-type)
|
|
|
|
|
2008-04-10 14:10:46 +00:00
|
|
|
;; arch-tag: e7837072-a4af-4d08-9953-8a3e755abf9d
|
2003-05-30 23:31:15 +00:00
|
|
|
;;; float-sup.el ends here
|